From a4810b7ea5488e9cf2eb43a2aa78dfdaf3a939d0 Mon Sep 17 00:00:00 2001 From: bramtayl Date: Mon, 27 Jan 2020 11:45:39 -0500 Subject: [PATCH] Missing generators.jl test (#34450) --- test/iterators.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/iterators.jl b/test/iterators.jl index 71d4e2b74cb67d..d456969b83aedc 100644 --- a/test/iterators.jl +++ b/test/iterators.jl @@ -3,6 +3,8 @@ using Base.Iterators using Random +@test Base.IteratorSize(Any) isa Base.SizeUnknown + # zip and filter iterators # issue #4718 @test collect(Iterators.filter(x->x[1], zip([true, false, true, false],"abcd"))) == [(true,'a'),(true,'c')]