Skip to content

Commit

Permalink
Update composite_algorithm_test.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas authored Oct 20, 2024
1 parent 89ad43c commit c5484b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/interface/composite_algorithm_test.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c5484b7

Please sign in to comment.