Skip to content

Commit

Permalink
remove commented out check against zipstore.delete
Browse files Browse the repository at this point in the history
  • Loading branch information
jhamman committed Sep 12, 2024
1 parent 7c82763 commit ccff15f
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tests/v3/test_store/test_zip.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,6 @@ async def test_not_writable_store_raises(self, store_kwargs: dict[str, Any]) ->
with pytest.raises(ValueError):
await store.set("foo", cpu.Buffer.from_bytes(b"bar"))

# # delete
# TODO: uncomment once deletes are implemented
# with pytest.raises(ValueError):
# await store.delete("foo")

def test_store_repr(self, store: ZipStore) -> None:
assert str(store) == f"zip://{store.path!s}"

Expand Down

0 comments on commit ccff15f

Please sign in to comment.