From c5484b72fa4d3f710b412d59cf4a8123792eb92f Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sun, 20 Oct 2024 07:06:52 -0400 Subject: [PATCH] Update composite_algorithm_test.jl --- test/interface/composite_algorithm_test.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/interface/composite_algorithm_test.jl b/test/interface/composite_algorithm_test.jl index be3a496fcf..a161844fe2 100644 --- a/test/interface/composite_algorithm_test.jl +++ b/test/interface/composite_algorithm_test.jl @@ -47,7 +47,7 @@ v = @inferred OrdinaryDiffEqCore.ode_extrapolant( alg_mixed_r = CompositeAlgorithm((ABM54(), Tsit5()), reverse_choice) alg_mixed2 = CompositeAlgorithm((Tsit5(), ABM54()), reverse_choice) - @test_throws ErrorException solve(prob_ode_linear, alg_mixed) + @test_throws ArgumentError solve(prob_ode_linear, alg_mixed) sol2 = solve(prob_ode_linear, Tsit5()) sol3 = solve(prob_ode_linear, alg_mixed; dt = 0.05) sol4 = solve(prob_ode_linear, alg_mixed_r; dt = 0.05)