youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 655c410063da3400272b1e08d2f7432f2bb9e182
parent b2a027fc6f858d08fb0f76e3e9ae777f8f846361
Author: squibbysquibby <34315567+squibbysquibby@users.noreply.github.com>
Date:   Sun, 21 Jan 2018 08:15:11 -0300

[test_download] Fix download tests for lazy extractors (closes #13554, closes #13757)


Diffstat:
Mtest/test_download.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/test_download.py b/test/test_download.py @@ -92,8 +92,8 @@ class TestDownload(unittest.TestCase): def generator(test_case, tname): def test_template(self): - ie = youtube_dl.extractor.get_info_extractor(test_case['name']) - other_ies = [get_info_extractor(ie_key) for ie_key in test_case.get('add_ie', [])] + ie = youtube_dl.extractor.get_info_extractor(test_case['name'])() + other_ies = [get_info_extractor(ie_key)() for ie_key in test_case.get('add_ie', [])] is_playlist = any(k.startswith('playlist') for k in test_case) test_cases = test_case.get( 'playlist', [] if is_playlist else [test_case])