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 31dc872 commit 412aa23Copy full SHA for 412aa23
fsspec/implementations/tests/test_dirfs.py
@@ -592,7 +592,10 @@ def test_sign(mocker, dirfs):
592
@pytest.mark.asyncio
593
async def test_open_async(mocker, adirfs):
594
adirfs.fs.open_async = mocker.AsyncMock()
595
- assert await adirfs.open_async("file", *ARGS, **KWARGS) == adirfs.fs.open_async.return_value
+ assert (
596
+ await adirfs.open_async("file", *ARGS, **KWARGS)
597
+ == adirfs.fs.open_async.return_value
598
+ )
599
adirfs.fs.open_async.assert_called_once_with(f"{PATH}/file", *ARGS, **KWARGS)
600
601
0 commit comments