Skip to content

Commit 5a831df

Browse files
committed
remove tests for removed feature
1 parent 173c06a commit 5a831df

File tree

1 file changed

+0
-29
lines changed

1 file changed

+0
-29
lines changed

test/verbosity.jl

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -90,35 +90,6 @@ using Test
9090
# Test error for unknown group
9191
@test_throws ErrorException group_options(v8, :unknown_group)
9292
end
93-
94-
@testset "Group getproperty access" begin
95-
v = LinearVerbosity()
96-
97-
# Test getting groups returns NamedTuples
98-
error_group = v.error_control
99-
performance_group = v.performance
100-
numerical_group = v.numerical
101-
102-
@test error_group isa NamedTuple
103-
@test performance_group isa NamedTuple
104-
@test numerical_group isa NamedTuple
105-
106-
# Test correct keys are present
107-
@test :default_lu_fallback in keys(error_group)
108-
@test :no_right_preconditioning in keys(performance_group)
109-
@test :KrylovKit_verbosity in keys(numerical_group)
110-
@test :using_IterativeSolvers in keys(numerical_group)
111-
@test :pardiso_verbosity in keys(numerical_group)
112-
113-
# Test values are AbstractMessageLevel types
114-
@test error_group.default_lu_fallback isa SciMLLogging.AbstractMessageLevel
115-
@test performance_group.no_right_preconditioning isa SciMLLogging.AbstractMessageLevel
116-
@test numerical_group.KrylovKit_verbosity isa SciMLLogging.AbstractMessageLevel
117-
118-
# Individual field access should still work
119-
@test v.default_lu_fallback isa SciMLLogging.Silent
120-
@test v.KrylovKit_verbosity == SciMLLogging.CustomLevel(1)
121-
end
12293
end
12394

12495

0 commit comments

Comments
 (0)