Skip to content

Commit c5fb025

Browse files
test: broken BVDiffEq tests are no longer broken
1 parent 8513736 commit c5fb025

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/bvproblem.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ daesolvers = [Ascher2, Ascher4, Ascher6]
2929

3030
for solver in solvers
3131
sol = solve(bvp, solver(), dt = 0.01)
32-
@test_broken isapprox(sol.u[end], osol.u[end]; atol = 0.01)
33-
@test_broken sol.u[1] == [1.0, 2.0]
32+
@test isapprox(sol.u[end], osol.u[end]; atol = 0.01)
33+
@test sol.u[1] == [1.0, 2.0]
3434
end
3535

3636
# Test out of place
@@ -39,8 +39,8 @@ daesolvers = [Ascher2, Ascher4, Ascher6]
3939

4040
for solver in solvers
4141
sol = solve(bvp2, solver(), dt = 0.01)
42-
@test_broken isapprox(sol.u[end], osol.u[end]; atol = 0.01)
43-
@test_broken sol.u[1] == [1.0, 2.0]
42+
@test isapprox(sol.u[end], osol.u[end]; atol = 0.01)
43+
@test sol.u[1] == [1.0, 2.0]
4444
end
4545
end
4646

0 commit comments

Comments
 (0)