Skip to content

Commit b5e4f9c

Browse files
committed
better test
1 parent f21fcc2 commit b5e4f9c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/v3/test_array.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import pytest
55

66
from zarr import Array, Group
7-
from zarr.core.buffer import default_buffer_prototype
87
from zarr.core.common import ZarrFormat
98
from zarr.errors import ContainsArrayError, ContainsGroupError
109
from zarr.store import LocalStore, MemoryStore
@@ -154,4 +153,4 @@ async def test_array_v3_nan_fill_value(store: MemoryStore) -> None:
154153
assert np.isnan(arr.fill_value)
155154
assert arr.fill_value.dtype == arr.dtype
156155
# 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
156+
assert not [a async for a in store.list_prefix("/")]

0 commit comments

Comments
 (0)