Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
jhamman committed Oct 17, 2024
1 parent 5daa82a commit ad553c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/v3/test_store/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ async def test_make_store_path_invalid() -> None:


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

monkeypatch.setattr(fsspec.implementations.memory.MemoryFileSystem, "async_impl", True)
monkeypatch.setattr(memory.MemoryFileSystem, "async_impl", True)
store_path = await make_store_path("memory://")
assert isinstance(store_path.store, RemoteStore)

Expand Down
2 changes: 1 addition & 1 deletion tests/v3/test_store/test_zip.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,4 @@ async def test_with_mode(self, store: ZipStore) -> None:

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

0 comments on commit ad553c7

Please sign in to comment.