We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cfd9b3 commit b8e6692Copy full SHA for b8e6692
tests/unit/conftest.py
@@ -33,8 +33,8 @@
33
def mock_store(tmp_path_factory):
34
"""Make a mocked MDIO store for writing."""
35
tmp_dir = tmp_path_factory.mktemp("mdio")
36
- fs = LocalFileSystem(tmp_dir.name)
37
- return FsspecStore(fs)
+ fs = LocalFileSystem()
+ return FsspecStore(fs, path=tmp_dir.name)
38
39
40
@pytest.fixture
0 commit comments