Skip to content

Commit

Permalink
Refactor test_extreme_values function to use a wider range of values …
Browse files Browse the repository at this point in the history
…in test_regression.py
  • Loading branch information
RichieHakim committed Apr 15, 2024
1 parent 38f7b53 commit 66360f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bnpm/tests/test_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ def test_extreme_values():

# Hypothesis test
@given(
n=st.integers(min_value=2, max_value=100),
m=st.integers(min_value=2, max_value=99),
n=st.integers(min_value=3, max_value=100),
m=st.integers(min_value=3, max_value=99),
noise=st.floats(min_value=0.01, max_value=1.0),
)
@hypothesis.settings(max_examples=10)
Expand Down

0 comments on commit 66360f8

Please sign in to comment.