diff --git a/gallery_dl/extractor/batoto.py b/gallery_dl/extractor/batoto.py index aa33b12d..0202dceb 100644 --- a/gallery_dl/extractor/batoto.py +++ b/gallery_dl/extractor/batoto.py @@ -93,7 +93,7 @@ class BatotoChapterExtractor(BatotoExtractor, AsynchronousExtractor): pattern = [r"(?:https?://)?(?:www\.)?bato\.to/reader#([0-9a-f]+)"] test = [ ("http://bato.to/reader#459878c8fda07502", { - "url": "8fd449d38018cfed2ccdb76f69087815b463f1e9", + "url": "432d7958506ad913b0a9e42664a89e46a63e9296", "keyword": "75a3a86d32aecfc21c44865b4043490757f73d77", }), ("http://bato.to/reader#459878c8fda07503", { diff --git a/gallery_dl/extractor/whentai.py b/gallery_dl/extractor/whentai.py index fdd82f62..4ec0f203 100644 --- a/gallery_dl/extractor/whentai.py +++ b/gallery_dl/extractor/whentai.py @@ -81,7 +81,7 @@ class WhentaiImageExtractor(Extractor): test = [("http://whentai.com/view/2089/", { "url": "c3a36d4b9c6c672bc1771b1d2e353703d4f3ee03", "keyword": "686bb5af1694efb326d597d4c98ee12d88078455", - "content": "31909f3d52d14ba6bf79bf303eb31d6807588f25", + "content": "9d953355e812d3165a2cf240bd8008864c053d31", })] def __init__(self, match): diff --git a/test/test_extractors.py b/test/test_extractors.py index e892a3fe..f746cb6a 100644 --- a/test/test_extractors.py +++ b/test/test_extractors.py @@ -38,7 +38,7 @@ class TestExtractors(unittest.TestCase): self.assertEqual(tjob.hash_content.hexdigest(), result["content"]) -# dynamically genertate tests +# dynamically generate tests def _generate_test(extr, tcase): def test(self): url, result = tcase @@ -48,7 +48,7 @@ def _generate_test(extr, tcase): # enable selective testing for direct calls -skip = ["exhentai", "kissmanga", "mangafox"] +skip = ["exhentai", "kissmanga", "mangafox", "mangamint"] if __name__ == '__main__' and len(sys.argv) > 1: extractors = [ extr for extr in extractor.extractors()