From 8cf94af344c392687ce288e6eda0ee5d1eff3f5b Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Wed, 13 Nov 2024 21:20:40 -0100 Subject: [PATCH] Update utility_tests.jl --- test/utility_tests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utility_tests.jl b/test/utility_tests.jl index f55a48c3..1c6a0b5d 100644 --- a/test/utility_tests.jl +++ b/test/utility_tests.jl @@ -44,7 +44,7 @@ end ldiv!(tmp, lu!(integrator.cache.nlsolver.cache.W), u0); @test tmp != concrete_W \ u0 # But jacobian2W! will update the cache - StochasticDiffEq.OrdinaryDiffEq.jacobian2W!(integrator.cache.nlsolver.cache.W._concrete_form, mm, dtgamma, integrator.cache.nlsolver.cache.W.J.A, true) + StochasticDiffEq.OrdinaryDiffEq.jacobian2W!(integrator.cache.nlsolver.cache.W._concrete_form, mm, dtgamma, integrator.cache.nlsolver.cache.W.J.A) @test convert(AbstractMatrix, integrator.cache.nlsolver.cache.W) == concrete_W ldiv!(tmp, lu!(integrator.cache.nlsolver.cache.W), u0); @test tmp == concrete_W \ u0 end