Skip to content

Commit 6ddbefa

Browse files
committed
Fix comment
1 parent 49efe83 commit 6ddbefa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/basemath_analysis/test_basemath.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,9 @@ def test_seed_not_provided():
166166
"""
167167
basemath = BaseMathsTest(0.3, 0.9, 0.05, 0.2)
168168
assert basemath.required_samples == 42
169-
# First evaluation to show that the experiment starts inconclusive. Using any number of samples lower than
170-
# the total requirement risks losing the 'coin flip' to determine whether we crossed the line (since we don't
171-
# control the seed in this test), so we set it to zero to keep the test deterministic
169+
# First evaluation to show that the experiment starts inconclusive. Using a number of samples that's greater than
170+
# zero but less than the total requirement risks losing the 'coin flip' to determine whether we crossed the line
171+
# (since we don't control the seed in this test), so we set it to zero to keep the test deterministic
172172
assert basemath.evaluate_experiment(0, 0, 0, 0) == 0
173173
# And now we evaluate with all the samples at once, again deterministic
174174
assert basemath.evaluate_experiment(0, -10, 0, 50) == -1

0 commit comments

Comments
 (0)