We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 122b4ef commit 8aa18b7Copy full SHA for 8aa18b7
tests/test_strategies.py
@@ -7,12 +7,4 @@ def test_original_rank():
7
for details in characteristics.values()
8
if details['original_rank'] is not None]
9
10
- assert len(ranks) == 63
11
-
12
- # Test that are no duplicates in the rank values
13
- assert len(ranks) == len(set(ranks))
14
15
- # There were 63 strategies in the second tournament and so every integer
16
- # between 1 and 63 inclusive should appear in the ranks list. Those values
17
- # sum to 2016.
18
- assert sum(ranks) == 2016
+ assert sorted(ranks) = list(range(1, 63 + 1))
0 commit comments