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 120a6bc commit c6ded01Copy full SHA for c6ded01
1 file changed
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