Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/test/remove-too-slow-healthcheck…
Browse files Browse the repository at this point in the history
…' into test/remove-too-slow-healthcheck
  • Loading branch information
hollandjg committed Jan 19, 2024
2 parents 57d71f9 + 42ab469 commit db01b07
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/test_strategies.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,7 @@ def variable_integer_strategy(draw, name=None, label=None, units=None, covariate
value_range = draw(
st.one_of(
st.none(),
st.tuples(st.integers(), st.integers())
.filter(lambda x: x[0] != x[1])
.map(sorted),
st.tuples(st.integers(), st.integers()).map(sorted),
)
)
if value_range is None:
Expand Down

0 comments on commit db01b07

Please sign in to comment.