Skip to content

Commit c15979a

Browse files
Update test/common_interface/jacobians.jl
1 parent 6b02591 commit c15979a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/common_interface/jacobians.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ 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)))
38+
jac_prototype = JacVec((du, u) -> Lotka(du, u, (), 0.0), ones(2)),
39+
SciMLBase.NullParameters())
3940

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

0 commit comments

Comments
 (0)