Skip to content

Commit a77cac9

Browse files
test: some LinearProblem tests are no longer broken
1 parent e4fcb26 commit a77cac9

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

test/linearproblem.jl

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ ps = [p => A, q => b]
3535
@test prob.ps[p * q] A * b
3636

3737
sol = solve(prob)
38-
# https://github.com/SciML/LinearSolve.jl/issues/532
39-
@test_broken SciMLBase.successful_retcode(sol)
38+
@test SciMLBase.successful_retcode(sol)
4039
@test prob.A * sol.u - prob.bzeros(3) atol=1e-10
4140

4241
A2 = rand(3, 3)
@@ -73,8 +72,7 @@ ps = [p => A, q => b]
7372
@test prob3.ps[p * q] A * b
7473

7574
sol = solve(prob3)
76-
# https://github.com/SciML/LinearSolve.jl/issues/532
77-
@test_broken SciMLBase.successful_retcode(sol)
75+
@test SciMLBase.successful_retcode(sol)
7876
@test prob3.A * sol.u - prob3.bzeros(3) atol=1e-10
7977
end
8078
end

0 commit comments

Comments
 (0)