Skip to content

Commit 60d83c6

Browse files
Update composite_algorithm_test.jl
1 parent c5484b7 commit 60d83c6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/interface/composite_algorithm_test.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ v = @inferred OrdinaryDiffEqCore.ode_extrapolant(
4949

5050
@test_throws ArgumentError solve(prob_ode_linear, alg_mixed)
5151
sol2 = solve(prob_ode_linear, Tsit5())
52-
sol3 = solve(prob_ode_linear, alg_mixed; dt = 0.05)
53-
sol4 = solve(prob_ode_linear, alg_mixed_r; dt = 0.05)
54-
sol5 = solve(prob_ode_linear, alg_mixed2; dt = 0.05)
52+
sol3 = solve(prob_ode_linear, alg_mixed; dt = 0.05, adaptive=false)
53+
sol4 = solve(prob_ode_linear, alg_mixed_r; dt = 0.05, adaptive=false)
54+
sol5 = solve(prob_ode_linear, alg_mixed2; dt = 0.05, adaptive=false)
5555
@test sol3.t == sol4.t && sol3.u == sol4.u
5656
@test sol3(0.8)sol2(0.8) atol=1e-4
5757
@test sol5(0.8)sol2(0.8) atol=1e-4

0 commit comments

Comments
 (0)