Skip to content

Commit

Permalink
Unbreak test
Browse files Browse the repository at this point in the history
  • Loading branch information
rayegun committed Feb 29, 2024
1 parent 3108a32 commit 1eaf772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/default_algs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ A = spzeros(2, 2)
# test that solving a singular problem doesn't error
prob = LinearProblem(A, ones(2))
@test solve(prob, UMFPACKFactorization()).retcode == ReturnCode.Infeasible
@test_broken solve(prob, KLUFactorization()).retcode == ReturnCode.Infeasible
@test solve(prob, KLUFactorization()).retcode == ReturnCode.Infeasible

@test LinearSolve.defaultalg(sprand(10^4, 10^4, 1e-5) + I, zeros(1000)).alg ===
LinearSolve.DefaultAlgorithmChoice.KLUFactorization
Expand Down

0 comments on commit 1eaf772

Please sign in to comment.