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 c1c1fe4 commit 6741a0dCopy full SHA for 6741a0d
tests/test_store/test_object.py
@@ -75,6 +75,9 @@ def test_store_init_raises(self) -> None:
75
with pytest.raises(TypeError):
76
ObjectStore("path/to/store")
77
78
+ async def test_store_delete_nonexistent_key_does_not_raise(self, store: ObjectStore) -> None:
79
+ await store.delete("nonexistent_key")
80
+
81
82
@pytest.mark.slow_hypothesis
83
def test_zarr_hierarchy():
0 commit comments