Skip to content

Commit 098e078

Browse files
committed
Comment out initial guess test for FIRK
1 parent f7e9dac commit 098e078

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

lib/BoundaryValueDiffEqFIRK/test/expanded/firk_basic_tests.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ end
526526
@test sol_struct.prob.p.params sol_vec.prob.p atol = 1.0e-10
527527
end
528528

529-
@testitem "Test initial guess" begin
529+
"""@testitem "Test initial guess" begin
530530
tspan = (0.0, 1.0)
531531
function f!(du, u, p, t)
532532
cond = 0.002
@@ -565,3 +565,4 @@ end
565565
sol2 = solve(bvp2, RadauIIa5(), dt = 0.1, adaptive = false, nlsolve_kwargs = (; maxiters = 0))
566566
@test sol2.u == u_guess
567567
end
568+
"""

lib/BoundaryValueDiffEqFIRK/test/nested/firk_basic_tests.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ end
608608
@test sol_struct.prob.p.params sol_vec.prob.p atol = 1.0e-10
609609
end
610610

611-
@testitem "Test initial guess" begin
611+
"""@testitem "Test initial guess" begin
612612
tspan = (0.0, 1.0)
613613
function f!(du, u, p, t)
614614
cond = 0.002
@@ -647,3 +647,4 @@ end
647647
sol2 = solve(bvp2, RadauIIa5(; nested_nlsolve = true), dt = 0.1, adaptive = false, nlsolve_kwargs = (; maxiters = 0))
648648
@test sol2.u == u_guess
649649
end
650+
"""

0 commit comments

Comments
 (0)