Skip to content

Commit

Permalink
Merge pull request #103 from jannikluhn/update-hypothesis
Browse files Browse the repository at this point in the history
Update Hypothesis
  • Loading branch information
jannikluhn committed Dec 16, 2019
2 parents d3eabae + d6e36ff commit d74b35c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"pytest-xdist==1.28.0",
"pytest-watch>=4.1.0,<5",
"tox>=2.9.1,<3",
"hypothesis==3.69.5",
"hypothesis==4.54.0",
"ruamel.yaml==0.15.87",
"mypy-extensions>=0.4.1,<1.0.0",
],
Expand Down
2 changes: 1 addition & 1 deletion tests/hashable/hashable_strategies.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def general_list_sedes_and_values_st(draw, element_sedes_and_elements, size=None

if size is None:
size = draw(st.integers(min_value=1, max_value=10))
max_size = draw(st.integers(min_value=size))
max_size = draw(st.integers(min_value=size, max_value=1024))

sedes = List(element_sedes, max_length=max_size)
values = st.lists(elements, min_size=size, max_size=size)
Expand Down

0 comments on commit d74b35c

Please sign in to comment.