Skip to content

Commit 69916b6

Browse files
committed
Do not test zip() on Julia 1.0 as it's unsupported
1 parent b01acf9 commit 69916b6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/test_sparse_int_set.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,8 @@ import DataStructures: SparseIntSet
185185
end
186186
@test s1 == 4*24
187187
end
188-
@test zip() isa Iterators.Zip # issue 621
188+
if VERSION >= v"1.1"
189+
@test zip() isa Iterators.Zip # issue 621
190+
end
189191

190192
end

0 commit comments

Comments
 (0)