Skip to content

Commit 6b02591

Browse files
committed
fix depwarn
1 parent 65d4204 commit 6b02591

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/common_interface/jacobians.jl

+1-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ sol9 = solve(prob, CVODE_BDF(; linear_solver = :KLU))
3535
@test Array(sol9) Array(good_sol)
3636

3737
Lotka_fj = ODEFunction(Lotka;
38-
jac_prototype = JacVec((du, u) -> Lotka(du, u, (), 0.0), ones(2),
39-
SciMLBase.NullParameters()))
38+
jac_prototype = JacVec((du, u) -> Lotka(du, u, (), 0.0), ones(2)))
4039

4140
prob = ODEProblem(Lotka_fj, ones(2), (0.0, 10.0))
4241
sol9 = solve(prob, CVODE_BDF(; linear_solver = :GMRES), saveat = 0.1, abstol = 1e-12,

0 commit comments

Comments
 (0)