diff --git a/Project.toml b/Project.toml index d92500f7e2..98c7837212 100644 --- a/Project.toml +++ b/Project.toml @@ -129,7 +129,7 @@ LabelledArrays = "1.3" Latexify = "0.11, 0.12, 0.13, 0.14, 0.15, 0.16" Libdl = "1" LinearAlgebra = "1" -LinearSolve = "3" +LinearSolve = "3.19.2" Logging = "1" MLStyle = "0.4.17" ModelingToolkitStandardLibrary = "2.20" diff --git a/test/linearproblem.jl b/test/linearproblem.jl index 7cba931ae5..308006d547 100644 --- a/test/linearproblem.jl +++ b/test/linearproblem.jl @@ -104,7 +104,7 @@ end sol = solve(prob) # https://github.com/SciML/LinearSolve.jl/issues/532 - @test_broken SciMLBase.successful_retcode(sol) + @test SciMLBase.successful_retcode(sol) @test prob.A * sol.u - prob.b≈zeros(3) atol=1e-10 A2 = rand(3, 3) @@ -131,7 +131,7 @@ end sol = solve(prob3) # https://github.com/SciML/LinearSolve.jl/issues/532 - @test_broken SciMLBase.successful_retcode(sol) + @test SciMLBase.successful_retcode(sol) @test prob3.A * sol.u - prob3.b≈zeros(3) atol=1e-10 end end