Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HDembinski committed Aug 6, 2024
1 parent f32dd31 commit f63b3b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_binom.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_cdf(p):
np.testing.assert_allclose(got, expected)


@pytest.mark.parametrize("n", np.arange(0, 10))
@pytest.mark.parametrize("n", np.arange(0, 10, 2))
@pytest.mark.parametrize("p", np.linspace(0, 1, 5))
def test_rvs(n, p):
got = binom.rvs(n, p, size=1000, random_state=1)
Expand Down

0 comments on commit f63b3b4

Please sign in to comment.