Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
lengau committed Oct 7, 2024
1 parent 98805d2 commit 4b50d14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/commands/test_store_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@ def read(self, size):
assert next(streamed) == b"12345"
assert test_content._test_read_chunks == [chunk_size]
assert next(streamed) == b"6789"
assert test_content._test_read_chunks == [chunk_size, chunk_size]
assert test_content._test_read_chunks == [chunk_size, chunk_size, chunk_size]
with pytest.raises(StopIteration):
next(streamed)

Expand Down

0 comments on commit 4b50d14

Please sign in to comment.