Skip to content

Commit

Permalink
improve test
Browse files Browse the repository at this point in the history
  • Loading branch information
oscardssmith committed Nov 3, 2023
1 parent 0cff7b3 commit 5ab14bf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/interface/type_handling.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,6 @@ sol = solve(prob, Tsit5())
ode_f(du, u, p, t) = du[1] = -u[1]
# autospecialize broken for the next 35 minutes
prob = ODEProblem(ODEFunction{true, SciMLBase.FullSpecialize()}(ode_f), [1f0], (0.0,1.0))
solve(prob, Rodas5P())
for alg in [Tsit5(), Rodas5P(), FBDF()]
solve(prob, alg)
end

0 comments on commit 5ab14bf

Please sign in to comment.