Skip to content

Commit 0b2edf0

Browse files
committed
Don't test empty matrices on v1.6
1 parent 7771273 commit 0b2edf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2756,7 +2756,7 @@ end
27562756
@testset "eigen" begin
27572757
sortby = x -> (real(x), imag(x))
27582758
@testset "AbstractFill" begin
2759-
@testset for val in (2.0, -2, 3+2im, 4 - 5im, 2im), n in (0, 1, 4)
2759+
@testset for val in (2.0, -2, 3+2im, 4 - 5im, 2im), n in (VERSION >= v"1.10" ? (0, 1, 4) : (1, 4))
27602760
F = Fill(val, n, n)
27612761
M = Matrix(F)
27622762
@test eigvals(F; sortby) eigvals(M; sortby)

0 commit comments

Comments
 (0)