Skip to content

Commit

Permalink
Fix shutdown for the fake download manager
Browse files Browse the repository at this point in the history
  • Loading branch information
drew2a committed Jul 12, 2023
1 parent 503ec53 commit bcd9a6a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ async def fake_dlmgr(tmp_path_factory):
dlmgr.metadata_tmpdir = tmp_path_factory.mktemp('metadata_tmpdir')
dlmgr.get_session = lambda *_, **__: MagicMock()
yield dlmgr
await dlmgr.shutdown(timeout=0)
await dlmgr.shutdown()


async def test_get_metainfo_valid_metadata(fake_dlmgr):
Expand Down

0 comments on commit bcd9a6a

Please sign in to comment.