]> jfr.im git - yt-dlp.git/blobdiff - test/test_download.py
Add function add_default_info_extractors to YoutubeDL
[yt-dlp.git] / test / test_download.py
index db43e99620a140cb09e760f9b4e37542f4deb81b..786ebba88a072c74c0596f66c6cb8052b7f3eaff 100644 (file)
@@ -14,7 +14,6 @@
 sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
 
 import youtube_dl.YoutubeDL
-import youtube_dl.extractor
 from youtube_dl.utils import *
 
 PARAMETERS_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), "parameters.json")
@@ -87,8 +86,7 @@ def test_template(self):
         params.update(test_case.get('params', {}))
 
         ydl = YoutubeDL(params)
-        for ie in youtube_dl.extractor.gen_extractors():
-            ydl.add_info_extractor(ie)
+        ydl.add_default_info_extractors()
         finished_hook_called = set()
         def _hook(status):
             if status['status'] == 'finished':