We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f21fcc2 commit b5e4f9cCopy full SHA for b5e4f9c
tests/v3/test_array.py
@@ -4,7 +4,6 @@
4
import pytest
5
6
from zarr import Array, Group
7
-from zarr.core.buffer import default_buffer_prototype
8
from zarr.core.common import ZarrFormat
9
from zarr.errors import ContainsArrayError, ContainsGroupError
10
from zarr.store import LocalStore, MemoryStore
@@ -154,4 +153,4 @@ async def test_array_v3_nan_fill_value(store: MemoryStore) -> None:
154
153
assert np.isnan(arr.fill_value)
155
assert arr.fill_value.dtype == arr.dtype
156
# all fill value chunk is an empty chunk, and should not be written
157
- assert await store.get("c/0", prototype=default_buffer_prototype()) is None
+ assert not [a async for a in store.list_prefix("/")]
0 commit comments