Skip to content

Commit 85fc371

Browse files
committed
namespace
1 parent 72e6c63 commit 85fc371

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/downstream/ode_stripping.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using OrdinaryDiffEq
1+
using OrdinaryDiffEq, SciMLBase
22

33
function lorenz!(du, u, p, t)
44
du[1] = 10.0 * (u[2] - u[1])
@@ -12,8 +12,8 @@ prob = ODEProblem(lorenz!, u0, tspan)
1212
# implicit solver so we can test cache stripping worked
1313
sol = solve(prob, Rosenbrock23())
1414

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

17-
@test isnothing(strip_solution(sol).interp.f)
17+
@test isnothing(SciMLBase.strip_solution(sol).interp.f)
1818

19-
@test isnothing(strip_solution(sol).interp.cache.jac_config)
19+
@test isnothing(SciMLBase.strip_solution(sol).interp.cache.jac_config)

0 commit comments

Comments
 (0)