Skip to content

Commit fc0d627

Browse files
Update tests (#332)
* Update tests * Update errors_thrown.jl * Skip the dense sampling test --------- Co-authored-by: Nathanael Bosch <[email protected]>
1 parent be97ae1 commit fc0d627

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/errors_thrown.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import ODEProblemLibrary: prob_ode_lotkavolterra
55

66
@testset "Fixed-timestep requires dt" begin
77
prob = prob_ode_lotkavolterra
8-
@test_throws ErrorException solve(prob, EK0(), adaptive=false)
8+
@test_throws ArgumentError solve(prob, EK0(), adaptive=false)
99
@test_nowarn solve(
1010
prob,
1111
EK0(smooth=false),

test/solution.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ using ODEProblemLibrary: prob_ode_lotkavolterra
146146
for i in 1:n_samples
147147
)
148148
) / (m * n * o)
149-
@test_broken low <= percent_in_interval <= high
149+
@test_skip low <= percent_in_interval <= high
150150
end
151151
end
152152
end

0 commit comments

Comments
 (0)