diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2015-04-30 23:33:49 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2015-04-30 23:33:49 +0800 |
commit | ffbc3901d276a4fafc9423c51dc2c6aa5d108d91 (patch) | |
tree | 5664b7378b212560710f76cc0c6ed2897787e7e1 /test/test_YoutubeDL.py | |
parent | 482a1258de6af0a15b6e7859d244f9125cadef47 (diff) | |
parent | 7a03280df4555998fc99399907062b62383db2c4 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'test/test_YoutubeDL.py')
-rw-r--r-- | test/test_YoutubeDL.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_YoutubeDL.py b/test/test_YoutubeDL.py index bb4a65ee1..82b827536 100644 --- a/test/test_YoutubeDL.py +++ b/test/test_YoutubeDL.py @@ -237,7 +237,7 @@ class TestFormatSelection(unittest.TestCase): f2['url'] = 'url:' + f2id info_dict = _make_result([f1, f2], extractor='youtube') - ydl = YDL() + ydl = YDL({'format': 'best/bestvideo'}) yie = YoutubeIE(ydl) yie._sort_formats(info_dict['formats']) ydl.process_ie_result(info_dict) @@ -245,7 +245,7 @@ class TestFormatSelection(unittest.TestCase): self.assertEqual(downloaded['format_id'], f1id) info_dict = _make_result([f2, f1], extractor='youtube') - ydl = YDL() + ydl = YDL({'format': 'best/bestvideo'}) yie = YoutubeIE(ydl) yie._sort_formats(info_dict['formats']) ydl.process_ie_result(info_dict) |