summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-04-08 14:10:12 +0700
committerSergey M․ <dstftw@gmail.com>2017-04-08 14:10:12 +0700
commit80b2fdf9ac99ebcbd6eec87670aa6d646da7dac4 (patch)
tree66120d957af5a36249b7756de30d54bf40902501
parent3bef10a50ca61e4d6e06b0990b8ccf5f739c0601 (diff)
downloadyoutube-dl-80b2fdf9ac99ebcbd6eec87670aa6d646da7dac4.tar.gz
youtube-dl-80b2fdf9ac99ebcbd6eec87670aa6d646da7dac4.tar.xz
youtube-dl-80b2fdf9ac99ebcbd6eec87670aa6d646da7dac4.zip
[test_download] Match info dicts against tests before matching info file
-rw-r--r--test/test_download.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test_download.py b/test/test_download.py
index 61015562d..5c5824d65 100644
--- a/test/test_download.py
+++ b/test/test_download.py
@@ -200,8 +200,9 @@ def generator(test_case, tname):
                 self.assertEqual(
                     test_case['playlist_duration_sum'], got_duration)
 
-            for tc in test_cases:
-                expect_value(self, res_dict['id'], tc['info_dict']['id'], 'id')
+            for tc_num, tc in enumerate(test_cases):
+                tc_res_dict = res_dict['entries'][tc_num] if is_playlist else res_dict
+                expect_info_dict(self, tc_res_dict, tc.get('info_dict', {}))
                 tc_filename = get_tc_filename(tc)
                 if not test_case.get('params', {}).get('skip_download', False):
                     self.assertTrue(os.path.exists(tc_filename), msg='Missing file ' + tc_filename)