Skip to content

Commit 63e900c

Browse files
committed
-
1 parent c991e10 commit 63e900c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source_py3/test_python_toolbox/test_combi/test_selection_space.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ def test():
1010
assert selection_space[0] == set()
1111
assert selection_space[-1] == set(range(5))
1212

13-
for i, selection in selection_space:
13+
for i, selection in enumerate(selection_space):
1414
assert selection in selection_space
1515
assert selection_space.index(selection) == i
1616

1717
assert (1, 6) not in selection_space
1818
assert 'foo' not in selection_space
19-
assert (1, 3, 5) in selection_space
19+
assert (1, 3, 4) in selection_space
2020

0 commit comments

Comments
 (0)