From c13f20ae65b6a4d3657dcdd30b2f606ccae86163 Mon Sep 17 00:00:00 2001 From: Alex Lowe Date: Mon, 7 Oct 2024 13:56:42 -0400 Subject: [PATCH] fix: test --- tests/commands/test_store_registry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/commands/test_store_registry.py b/tests/commands/test_store_registry.py index 50ca194b8..93bb1e621 100644 --- a/tests/commands/test_store_registry.py +++ b/tests/commands/test_store_registry.py @@ -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)