Skip to content

Commit

Permalink
equal should have been unequal
Browse files Browse the repository at this point in the history
  • Loading branch information
sfalkena committed Sep 23, 2024
1 parent 1ac6860 commit 40babfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/samplers/test_single.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def test_shuffle_seed(self) -> None:
)
sample1 = next(iter(sampler1))
sample2 = next(iter(sampler2))
assert sample1 == sample2
assert sample1 != sample2

@pytest.mark.slow
@pytest.mark.parametrize('num_workers', [0, 1, 2])
Expand Down

0 comments on commit 40babfc

Please sign in to comment.