From f6866d352f2c95750432bbf03dae6d3bb738ccd4 Mon Sep 17 00:00:00 2001 From: Qingyu Qu <2283984853@qq.com> Date: Tue, 17 Dec 2024 16:56:12 +0800 Subject: [PATCH] Some tests in nested FIRK are OK now --- lib/BoundaryValueDiffEqFIRK/test/nested/nlls_tests.jl | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/lib/BoundaryValueDiffEqFIRK/test/nested/nlls_tests.jl b/lib/BoundaryValueDiffEqFIRK/test/nested/nlls_tests.jl index 29537b64..1f8da105 100644 --- a/lib/BoundaryValueDiffEqFIRK/test/nested/nlls_tests.jl +++ b/lib/BoundaryValueDiffEqFIRK/test/nested/nlls_tests.jl @@ -184,13 +184,9 @@ end @testset "Problem: $i" for i in 1:2 prob = UnderconstrainedProbArr[i] @testset "Solver: $name" for (name, solver) in zip(SOLVERS_NAMES, SOLVERS) - if name == "RadauIIa5 with GaussNewton" - continue - else - sol = solve( - prob, solver; verbose = false, dt = 0.1, abstol = 1e-1, reltol = 1e-1) - @test SciMLBase.successful_retcode(sol.retcode) - end + sol = solve( + prob, solver; verbose = false, dt = 0.1, abstol = 1e-1, reltol = 1e-1) + @test SciMLBase.successful_retcode(sol.retcode) end end end