Skip to content

Commit

Permalink
fixup test
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAugspurger committed Nov 10, 2024
1 parent 447dbe5 commit 2811215
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/zarr/core/_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class ArrayInfo:
_store_type: str
_compressor: numcodecs.abc.Codec | None = None
_filters: tuple[numcodecs.abc.Codec, ...] | None = None
_codecs: tuple[Codec, ...] | None = None
_codecs: list[Codec] | None = None
_count_bytes: int | None = None
_count_bytes_stored: int | None = None
_count_chunks_initialized: int | None = None
Expand Down
2 changes: 1 addition & 1 deletion tests/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ def test_info_v3(self) -> None:
_order="C",
_read_only=False,
_store_type="MemoryStore",
_codecs=(BytesCodec(),),
_codecs=[BytesCodec()],
_count_bytes=128,
)
assert result == expected
Expand Down

0 comments on commit 2811215

Please sign in to comment.