Skip to content

Commit aa807af

Browse files
committed
fix tests
1 parent 328f8e5 commit aa807af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/downstream/ode_stripping.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ prob = ODEProblem(lorenz!, u0, tspan)
1212
# implicit solver so we can test cache stripping worked
1313
sol = solve(prob, Rosenbrock23())
1414

15-
@test isnothing(SciMLBase.strip_solution(sol).prob)
15+
@test SciMLBase.strip_solution(sol).prob.f isa ODENullFunction
1616

17-
@test isnothing(SciMLBase.strip_solution(sol).alg)
17+
@test isnothing(SciMLBase.strip_solution(sol, strip_alg = true).alg)
1818

1919
@test isnothing(SciMLBase.strip_solution(sol).interp.f)
2020

0 commit comments

Comments
 (0)