Skip to content

Commit 4d65458

Browse files
Merge pull request #3821 from AayushSabharwal/as/unbroken
test: `LinearProblem` tests are no longer broken
2 parents 7ff680d + b98075c commit 4d65458

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ LabelledArrays = "1.3"
129129
Latexify = "0.11, 0.12, 0.13, 0.14, 0.15, 0.16"
130130
Libdl = "1"
131131
LinearAlgebra = "1"
132-
LinearSolve = "3"
132+
LinearSolve = "3.19.2"
133133
Logging = "1"
134134
MLStyle = "0.4.17"
135135
ModelingToolkitStandardLibrary = "2.20"

test/linearproblem.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ end
104104

105105
sol = solve(prob)
106106
# https://github.com/SciML/LinearSolve.jl/issues/532
107-
@test_broken SciMLBase.successful_retcode(sol)
107+
@test SciMLBase.successful_retcode(sol)
108108
@test prob.A * sol.u - prob.bzeros(3) atol=1e-10
109109

110110
A2 = rand(3, 3)
@@ -131,7 +131,7 @@ end
131131

132132
sol = solve(prob3)
133133
# https://github.com/SciML/LinearSolve.jl/issues/532
134-
@test_broken SciMLBase.successful_retcode(sol)
134+
@test SciMLBase.successful_retcode(sol)
135135
@test prob3.A * sol.u - prob3.bzeros(3) atol=1e-10
136136
end
137137
end

0 commit comments

Comments
 (0)