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 cd21c78 commit 4661242Copy full SHA for 4661242
tests/test_properties.py
@@ -38,9 +38,15 @@ def test_array_creates_implicit_groups(array):
38
for i in range(len(ancestry)):
39
parent = "/".join(ancestry[: i + 1])
40
if array.metadata.zarr_format == 2:
41
- sync(array.store.get(f"{parent}/.zgroup", prototype=default_buffer_prototype()))
+ assert (
42
+ sync(array.store.get(f"{parent}/.zgroup", prototype=default_buffer_prototype()))
43
+ is not None
44
+ )
45
elif array.metadata.zarr_format == 3:
- sync(array.store.get(f"{parent}/zarr.json", prototype=default_buffer_prototype()))
46
47
+ sync(array.store.get(f"{parent}/zarr.json", prototype=default_buffer_prototype()))
48
49
50
51
52
@given(data=st.data())
0 commit comments