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 4abb3cd commit 381b7b0Copy full SHA for 381b7b0
zarr/tests/test_storage_v3.py
@@ -286,7 +286,7 @@ def test_rename_nonexisting(self):
286
287
def test_get_partial_values(self):
288
store = self.create_store()
289
- store.supports_efficient_get_partial_values in [True, False]
+ assert store.supports_efficient_get_partial_values in [True, False]
290
store[data_root + "foo"] = b"abcdefg"
291
store[data_root + "baz"] = b"z"
292
assert [b"a"] == store.get_partial_values([(data_root + "foo", (0, 1))])
0 commit comments