Skip to content

Commit 896ac21

Browse files
committed
Fix test
1 parent c5f7737 commit 896ac21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_estimator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ def test_random_observations(num_observations):
1111
for _ in range(num_observations):
1212
estimator.observe(random.randint(1, 1000) / 100)
1313

14-
assert 1 <= estimator.query(0.5) <= estimator.query(0.9) <= estimator.query(0.99) <= 1000
14+
assert 0 <= estimator.query(0.5) <= estimator.query(0.9) <= estimator.query(0.99) <= 10

0 commit comments

Comments
 (0)