From 2fc40e50f535d5f5f2804a94c5bdeaf6137451b6 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Thu, 10 Oct 2024 05:43:25 -0400 Subject: [PATCH] Update test/common_interface/jacobians.jl --- test/common_interface/jacobians.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/common_interface/jacobians.jl b/test/common_interface/jacobians.jl index 406a9bb5..482f174b 100644 --- a/test/common_interface/jacobians.jl +++ b/test/common_interface/jacobians.jl @@ -35,7 +35,7 @@ sol9 = solve(prob, CVODE_BDF(; linear_solver = :KLU)) @test Array(sol9) ≈ Array(good_sol) Lotka_fj = ODEFunction(Lotka; - jac_prototype = JacVec((du, u) -> Lotka(du, u, (), 0.0), ones(2)), + jac_prototype = JacVec((du, u) -> Lotka(du, u, (), 0.0), ones(2), SciMLBase.NullParameters())) prob = ODEProblem(Lotka_fj, ones(2), (0.0, 10.0))