Skip to content

Commit 8189cc7

Browse files
committed
add path kwarg to memory test fixture
1 parent 736ef8a commit 8189cc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/v3/test_store/test_memory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def get(self, store: MemoryStore, key: str) -> Buffer:
2222
def store_kwargs(
2323
self, request: pytest.FixtureRequest
2424
) -> dict[str, str | None | dict[str, Buffer]]:
25-
kwargs = {"store_dict": None, "mode": "r+"}
25+
kwargs = {"store_dict": None, "mode": "r+", "path": ""}
2626
if request.param is True:
2727
kwargs["store_dict"] = {}
2828
return kwargs

0 commit comments

Comments
 (0)