Skip to content

Commit

Permalink
Slightly relax test_output_is_roughly_balanced
Browse files Browse the repository at this point in the history
  • Loading branch information
norabelrose committed Mar 22, 2023
1 parent 03ba6e0 commit 15ab351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_samplers.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def test_output_is_roughly_balanced():

# Count the number of samples for each label
counter = Counter()
for sample in islice(reservoir, 2000):
for sample in islice(reservoir, 3000):
counter[sample[col]] += 1

# Check if the output is roughly balanced
Expand Down

0 comments on commit 15ab351

Please sign in to comment.