Skip to content

Commit ad553c7

Browse files
committed
fixup
1 parent 5daa82a commit ad553c7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/v3/test_store/test_core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ async def test_make_store_path_invalid() -> None:
7171

7272

7373
async def test_make_store_path_fsspec(monkeypatch) -> None:
74-
fsspec = pytest.importorskip("fsspec")
74+
memory = pytest.importorskip("fsspec.implementations.memory")
7575

76-
monkeypatch.setattr(fsspec.implementations.memory.MemoryFileSystem, "async_impl", True)
76+
monkeypatch.setattr(memory.MemoryFileSystem, "async_impl", True)
7777
store_path = await make_store_path("memory://")
7878
assert isinstance(store_path.store, RemoteStore)
7979

tests/v3/test_store/test_zip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,4 @@ async def test_with_mode(self, store: ZipStore) -> None:
103103

104104
@pytest.mark.parametrize("mode", ["a", "w"])
105105
async def test_store_open_mode(self, store_kwargs: dict[str, Any], mode: str) -> None:
106-
super().test_store_open_mode(store_kwargs, mode)
106+
await super().test_store_open_mode(store_kwargs, mode)

0 commit comments

Comments
 (0)