Skip to content

Commit a98c235

Browse files
remove test from v1.6
1 parent ca43b2e commit a98c235

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/core.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,9 @@ end
277277
for A in [sparse([1.0 2.0; 3.0 4.0])]
278278
@test ArrayInterface.lu_instance(A) isa typeof(lu(A))
279279
@test ArrayInterface.qr_instance(A) isa typeof(qr(A))
280-
@test ArrayInterface.cholesky_instance(A' * A) isa typeof(cholesky(A' * A))
280+
if VERSION >= v"1.9-"
281+
@test ArrayInterface.cholesky_instance(A' * A) isa typeof(cholesky(A' * A))
282+
end
281283
@test ArrayInterface.ldlt_instance(SymTridiagonal(A' * A)) isa typeof(ldlt(SymTridiagonal(A' * A)))
282284
end
283285
end

0 commit comments

Comments
 (0)