Skip to content

Commit

Permalink
I was being silly
Browse files Browse the repository at this point in the history
  • Loading branch information
jClugstor committed Aug 21, 2024
1 parent aa9b374 commit c1e3ed1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/interface/ode_strip_test.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using OrdinaryDiffEq, Test
import SciMLBase

function lorenz!(du, u, p, t)
du[1] = 10.0 * (u[2] - u[1])
Expand All @@ -12,5 +13,5 @@ prob = ODEProblem(lorenz!, u0, tspan)

sol = solve(prob, Rosenbrock23())

@test isnothing(OrdinaryDiffEq.strip_interpolation(sol.interp).f)
@test isnothing(OrdinaryDiffEq.strip_interpolation(sol.interp).cache.jac_config)
@test isnothing(SciMLBase.strip_interpolation(sol.interp).f)
@test isnothing(SciMLBase.strip_interpolation(sol.interp).cache.jac_config)

0 comments on commit c1e3ed1

Please sign in to comment.