From 959bbef230c61df1f67250907c4fff1d94a55063 Mon Sep 17 00:00:00 2001 From: Ary Borenszweig Date: Sat, 28 Aug 2021 06:24:11 -0300 Subject: [PATCH] Add missing require in iterator_spec (#11148) Without it, the spec can't be run standalone. --- spec/std/iterator_spec.cr | 1 + 1 file changed, 1 insertion(+) diff --git a/spec/std/iterator_spec.cr b/spec/std/iterator_spec.cr index e60b9e4f53e9..bd6afe6c14cd 100644 --- a/spec/std/iterator_spec.cr +++ b/spec/std/iterator_spec.cr @@ -1,4 +1,5 @@ require "spec" +require "spec/helpers/iterate" require "iterator" struct StructIter