From ce5de9ef2802f8d059d48b3957240e901f333162 Mon Sep 17 00:00:00 2001 From: peugeot Date: Fri, 26 Dec 2014 18:03:06 +0100 Subject: [PATCH] swap expect_info_dict args --- test/test_download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_download.py b/test/test_download.py index a009aa475..1d5f204da 100644 --- a/test/test_download.py +++ b/test/test_download.py @@ -204,7 +204,7 @@ def generator(test_case): with io.open(info_json_fn, encoding='utf-8') as infof: info_dict = json.load(infof) - expect_info_dict(self, tc.get('info_dict', {}), info_dict) + expect_info_dict(self, info_dict, tc.get('info_dict', {})) finally: try_rm_tcs_files() if is_playlist and res_dict is not None and res_dict.get('entries'):