Skip to content

Commit 4cdf9fc

Browse files
Update static_arrays.jl
1 parent 3634255 commit 4cdf9fc

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

test/static_arrays.jl

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,8 @@ for alg in (nothing, LUFactorization(), SVDFactorization(), CholeskyFactorizatio
1818
@inferred solve(LinearProblem(A, b), alg)
1919
@test norm(A * sol .- b) < 1e-10
2020

21-
if __non_native_static_array_alg(alg)
22-
@test_broken __solve_no_alloc(A, b, alg) isa SciMLBase.LinearSolution
23-
else
24-
@test_nowarn __solve_no_alloc(A, b, alg) isa SciMLBase.LinearSolution
25-
end
26-
21+
@show alg
22+
@test_nowarn __solve_no_alloc(A, b, alg) isa SciMLBase.LinearSolution
2723
cache = init(LinearProblem(A, b), alg)
2824
sol = solve!(cache)
2925
@test norm(A * sol .- b) < 1e-10

0 commit comments

Comments
 (0)