Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ async def test_validates_like_m365_storage(monkeypatch: pytest.MonkeyPatch) -> N

with pytest.raises(ValueError, match="Keys are required"):
await storage.read([], target_cls=_TestStoreItem)
with pytest.raises(ValueError, match="target_cls cannot be None"):
with pytest.raises(TypeError, match="target_cls"):
await storage.read(["k"])
with pytest.raises(ValueError, match="Changes are required"):
await storage.write({})
Expand Down
Loading