From 0765f08bfd3ab9de5a27da5094e2e7c89abd14f1 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Tue, 14 Nov 2023 01:33:50 -0500 Subject: [PATCH] Update test/integrators/event_detection_tests.jl --- test/integrators/event_detection_tests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integrators/event_detection_tests.jl b/test/integrators/event_detection_tests.jl index 307baf7759..97885568e0 100644 --- a/test/integrators/event_detection_tests.jl +++ b/test/integrators/event_detection_tests.jl @@ -62,7 +62,7 @@ sol = solve(prob, Tsit5(), callback = cb2) @test minimum(Array(sol)) > -40 # https://github.com/SciML/OrdinaryDiffEq.jl/issues/2055 -for alg in (Rodas5(), Rodas5P()) +for alg in (Rodas4(),Rodas4P(),Rodas5(), Rodas5P()) sol2 = solve(prob, alg; callback = cb2) sol3 = appxtrue(sol, sol2) @test sol3.errors[:L2] < 1e-5