Skip to content

Commit

Permalink
Update test/static_arrays.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas authored Jul 30, 2024
1 parent 14f838f commit 96b7ead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/static_arrays.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ for alg in (nothing, LUFactorization(), SVDFactorization(), CholeskyFactorizatio
sol = solve(LinearProblem(A, b), alg)
@inferred solve(LinearProblem(A, b), alg)
@test norm(A * sol .- b) < 1e-10
if typeof(alg) <: KrylovJL_GMRES
if alg isa Function && alg === KrylovJL_GMRES
@test_broken __solve_no_alloc(A, b, alg) isa SciMLBase.LinearSolution
else
@test_nowarn __solve_no_alloc(A, b, alg) isa SciMLBase.LinearSolution
Expand Down

0 comments on commit 96b7ead

Please sign in to comment.