diff options
author | Wolfgang Müller | 2024-11-15 12:51:50 +0100 |
---|---|---|
committer | Wolfgang Müller | 2024-11-15 12:51:50 +0100 |
commit | 43fe39cb1e715895ccad8fdf9b66c0d98b93ba8f (patch) | |
tree | aeb2f2bec7254df32e53c7b48a565532a33c7480 | |
parent | 7c63e0bed9c605f0ce35eef4b05d68676bb0ed29 (diff) | |
download | hircine-43fe39cb1e715895ccad8fdf9b66c0d98b93ba8f.tar.gz |
backend/tests: Remove unneeded parameter in test_gallery_dl
-rw-r--r-- | tests/plugins/scrapers/test_gallery_dl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugins/scrapers/test_gallery_dl.py b/tests/plugins/scrapers/test_gallery_dl.py index b4e7a4a..f5bdb88 100644 --- a/tests/plugins/scrapers/test_gallery_dl.py +++ b/tests/plugins/scrapers/test_gallery_dl.py @@ -42,7 +42,7 @@ def test_does_scrape(monkeypatch, archive_file, gen_comic): assert set(scraper.collect()) == set([Title(value="test")]) -def test_does_not_scrape_on_error(tmpdir, monkeypatch, gen_comic): +def test_does_not_scrape_on_error(tmpdir, gen_comic): comic = next(gen_comic) comic.archive.path = os.path.join(tmpdir, "nonexistent.zip") |