Skip to content

Commit b07a03b

Browse files
committed
-
1 parent 4c0be03 commit b07a03b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source_py3/test_python_toolbox/test_cute_iter_tools/test_pop_iterators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ def test():
2222
assert dict(iterate_popitem(dict_)) == {1: 2, 3: 4, 5: 6,}
2323
assert not dict_
2424

25-
lazy_tuple = iterate_pop(list(range(5)))
25+
lazy_tuple = iterate_pop(list(range(5)), lazy_tuple=True)
2626
assert isinstance(lazy_tuple, nifty_collections.LazyTuple)
2727

0 commit comments

Comments
 (0)