Skip to content

Commit

Permalink
Make test_sir slightly stronger
Browse files Browse the repository at this point in the history
  • Loading branch information
Armavica committed Jul 16, 2024
1 parent 04e1ceb commit b34d614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_rebop.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def test_sir(seed: int):
assert all(ds.S >= 0)
assert all(ds.I >= 0)
assert all(ds.R >= 0)
assert all(ds.S <= 1000)
assert all(ds.S <= 999)
assert all(ds.I <= 1000)
assert all(ds.R <= 1000)
npt.assert_array_equal(ds.S + ds.I + ds.R, [1000] * 251)
Expand Down

0 comments on commit b34d614

Please sign in to comment.