diff options
| -rw-r--r-- | tests/test_dl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_dl.py b/tests/test_dl.py index 5477b5f..5c962f9 100644 --- a/tests/test_dl.py +++ b/tests/test_dl.py @@ -25,6 +25,6 @@ from wikiget.wikiget import construct_parser @pytest.mark.skip(reason="skip tests that query a live API") class TestPrepDownload: def test_prep_download(self) -> None: - args = construct_parser().parser.parse_args(["File:Example.jpg"]) + args = construct_parser().parse_args(["File:Example.jpg"]) file = prep_download(args.FILE, args) assert file is not None |
