diff --git a/test/errors_thrown.jl b/test/errors_thrown.jl index 562f2074f..6bd84d3e4 100644 --- a/test/errors_thrown.jl +++ b/test/errors_thrown.jl @@ -5,7 +5,7 @@ import ODEProblemLibrary: prob_ode_lotkavolterra @testset "Fixed-timestep requires dt" begin prob = prob_ode_lotkavolterra - @test_throws ErrorException solve(prob, EK0(), adaptive=false) + @test_throws ArgumentError solve(prob, EK0(), adaptive=false) @test_nowarn solve( prob, EK0(smooth=false), diff --git a/test/solution.jl b/test/solution.jl index a740dae05..701532393 100644 --- a/test/solution.jl +++ b/test/solution.jl @@ -146,7 +146,7 @@ using ODEProblemLibrary: prob_ode_lotkavolterra for i in 1:n_samples ) ) / (m * n * o) - @test_broken low <= percent_in_interval <= high + @test_skip low <= percent_in_interval <= high end end end