diff options
author | squibbysquibby <34315567+squibbysquibby@users.noreply.github.com> | 2018-01-21 08:15:11 -0300 |
---|---|---|
committer | Sergey M <dstftw@gmail.com> | 2018-01-21 18:15:11 +0700 |
commit | 655c410063da3400272b1e08d2f7432f2bb9e182 (patch) | |
tree | 3abc71ab986ccec2f1e5fcd6fc0323c0d1e6c0d2 /test/test_download.py | |
parent | b2a027fc6f858d08fb0f76e3e9ae777f8f846361 (diff) |
[test_download] Fix download tests for lazy extractors (closes #13554, closes #13757)
Diffstat (limited to 'test/test_download.py')
-rw-r--r-- | test/test_download.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_download.py b/test/test_download.py index 209f5f6d6..ebe820dfc 100644 --- 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]) |