Skip to content

Commit 977ed05

Browse files
refactored import statement for axel.strategies in axelrod/tests/properties.py
1 parent 0715624 commit 977ed05

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

axelrod/tests/property.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@
44
import itertools
55

66
import axelrod as axl
7-
from axelrod import strategies
87

98
from hypothesis.strategies import composite, floats, integers, lists, sampled_from
109

1110

1211
@composite
1312
def strategy_lists(
14-
draw, strategies=axl.short_run_time_strategies, min_size=1, max_size=len(strategies)
13+
draw, strategies=axl.short_run_time_strategies, min_size=1, max_size=len(axl.strategies)
1514
):
1615
"""
1716
A hypothesis decorator to return a list of strategies

0 commit comments

Comments
 (0)