We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c991e10 commit 63e900cCopy full SHA for 63e900c
source_py3/test_python_toolbox/test_combi/test_selection_space.py
@@ -10,11 +10,11 @@ def test():
10
assert selection_space[0] == set()
11
assert selection_space[-1] == set(range(5))
12
13
- for i, selection in selection_space:
+ for i, selection in enumerate(selection_space):
14
assert selection in selection_space
15
assert selection_space.index(selection) == i
16
17
assert (1, 6) not in selection_space
18
assert 'foo' not in selection_space
19
- assert (1, 3, 5) in selection_space
+ assert (1, 3, 4) in selection_space
20
0 commit comments