We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Initial
1 parent e379c0e commit 28afedeCopy full SHA for 28afede
test/downstream/symbol_indexing.jl
@@ -27,7 +27,7 @@ sol_new = DiffEqArray(sol.u[1:10],
27
@test all(isequal.(all_variable_symbols(sol), all_variable_symbols(sol_new)))
28
@test all(isequal.(all_variable_symbols(sol), [x, RHS]))
29
@test all(isequal.(all_symbols(sol), all_symbols(sol_new)))
30
-@test all(isequal.(all_symbols(sol), [x, RHS, τ, t]))
+@test all([any(isequal(sym), all_symbols(sol)) for sym in [x, RHS, τ, t, Initial(x), Initial(RHS)]])
31
@test sol[solvedvariables] == sol[[x]]
32
@test sol_new[solvedvariables] == sol_new[[x]]
33
@test sol[allvariables] == sol[[x, RHS]]
0 commit comments