Skip to content

Commit 7f62b72

Browse files
fix: remove unnecessary test
ensuring `nothing` is not stored as indepsym is covered in SII tests
1 parent 999f3da commit 7f62b72

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

test/symbolic_indexing_interface_test.jl

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,9 @@ dx = DiffEqArray([[f(x), f2(x)] for x in t],
7070
@test constant_structure(dx)
7171
@info "TEST 29"
7272

73-
dx = DiffEqArray([[f(x), f2(x)] for x in t], t; variables = [:a, :b])
74-
@test_throws Exception dx[nothing] # make sure it isn't storing [nothing] as indepsym
75-
@info "TEST 30"
76-
7773
ABC = @SLVector (:a, :b, :c);
7874
A = ABC(1, 2, 3);
7975
B = RecursiveArrayTools.DiffEqArray([A, A], [0.0, 2.0]);
8076
@test getindex(B, :a) == [1, 1]
81-
@info "TEST 31"
77+
@info "TEST 30"
8278

0 commit comments

Comments
 (0)