We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
LinearProblem
1 parent 7ff680d commit ae322e9Copy full SHA for ae322e9
test/linearproblem.jl
@@ -104,7 +104,7 @@ end
104
105
sol = solve(prob)
106
# https://github.com/SciML/LinearSolve.jl/issues/532
107
- @test_broken SciMLBase.successful_retcode(sol)
+ @test SciMLBase.successful_retcode(sol)
108
@test prob.A * sol.u - prob.b≈zeros(3) atol=1e-10
109
110
A2 = rand(3, 3)
@@ -131,7 +131,7 @@ end
131
132
sol = solve(prob3)
133
134
135
@test prob3.A * sol.u - prob3.b≈zeros(3) atol=1e-10
136
end
137
0 commit comments