X-Git-Url: https://jfr.im/git/yt-dlp.git/blobdiff_plain/310f762636e192a065696232bb5a0f15938398b1..7a5c1cfe93924351387b44919b3c0b2f66c4b883:/test/helper.py diff --git a/test/helper.py b/test/helper.py index f45818b0f..963c40508 100644 --- a/test/helper.py +++ b/test/helper.py @@ -10,13 +10,13 @@ import ssl import sys -import youtube_dlc.extractor -from youtube_dlc import YoutubeDL -from youtube_dlc.compat import ( +import yt_dlp.extractor +from yt_dlp import YoutubeDL +from yt_dlp.compat import ( compat_os_name, compat_str, ) -from youtube_dlc.utils import ( +from yt_dlp.utils import ( preferredencoding, write_string, ) @@ -90,7 +90,7 @@ def report_warning(self, message): def gettestcases(include_onlymatching=False): - for ie in youtube_dlc.extractor.gen_extractors(): + for ie in yt_dlp.extractor.gen_extractors(): for tc in ie.get_testcases(include_onlymatching): yield tc