Skip to content

Commit d6bc505

Browse files
committed
Remove latent chol[!] tests to address CI failures.
1 parent bed991d commit d6bc505

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

stdlib/LinearAlgebra/test/cholesky.jl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ end
6464

6565
@testset "throw for non-square input" begin
6666
A = rand(eltya, 2, 3)
67-
@test_throws DimensionMismatch LinearAlgebra.chol!(A)
6867
@test_throws DimensionMismatch cholesky(A)
6968
@test_throws DimensionMismatch cholesky!(A)
7069
end
@@ -87,7 +86,6 @@ end
8786

8887
apos = apd[1,1]
8988
@test all(x -> x apos, cholesky(apos).factors)
90-
@test_throws PosDefException cholesky(-one(eltya))
9189

9290
# Test cholesky with Symmetric/Hermitian upper/lower
9391
apds = Symmetric(apd)
@@ -263,7 +261,6 @@ end
263261
for A in (R, C)
264262
@test !LinearAlgebra.issuccess(cholesky(A))
265263
@test !LinearAlgebra.issuccess(cholesky!(copy(A)))
266-
@test_throws PosDefException LinearAlgebra.chol!(copy(A))
267264
end
268265
end
269266

0 commit comments

Comments
 (0)