Skip to content

Commit f967b58

Browse files
refactored import statement for axel.strategies in axelrod/tests/properties.py
1 parent afc2ed4 commit f967b58

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)