Skip to content

Commit a050024

Browse files
committed
-
1 parent d615c8f commit a050024

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source_py2/test_python_toolbox/test_nifty_collections/test_bagging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def test_comparison(self):
169169
assert not smaller_item >= item
170170
assert not smaller_item > item
171171
assert smaller_item != item
172-
not_smaller_items = [item for item in next(zip(*hierarchy)) if
172+
not_smaller_items = [item for item in zip(*hierarchy)[0] if
173173
item not in smaller_items]
174174
for not_smaller_item in not_smaller_items:
175175
assert not item < smaller_item

0 commit comments

Comments
 (0)