Skip to content

Commit 23c504d

Browse files
committed
Don't test empty matrices on v1.6
1 parent ff8494f commit 23c504d

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
@@ -2944,7 +2944,7 @@ end
29442944
@testset "eigen" begin
29452945
sortby = x -> (real(x), imag(x))
29462946
@testset "AbstractFill" begin
2947-
@testset for val in (2.0, -2, 3+2im, 4 - 5im, 2im), n in (0, 1, 4)
2947+
@testset for val in (2.0, -2, 3+2im, 4 - 5im, 2im), n in (VERSION >= v"1.10" ? (0, 1, 4) : (1, 4))
29482948
F = Fill(val, n, n)
29492949
M = Matrix(F)
29502950
@test eigvals(F; sortby) eigvals(M; sortby)

0 commit comments

Comments
 (0)