aboutsummaryrefslogtreecommitdiff
path: root/test/helper.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-01-25 05:15:47 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-01-25 05:15:47 +0100
commit7d346331b53498b5966790677e0b41631edd8a4e (patch)
treeab9e50f4c56088ff41defd81f099b8c81770c82d /test/helper.py
parent881e6a1f5c47a65348879f817ad833081e8c5ada (diff)
downloadyoutube-dl-7d346331b53498b5966790677e0b41631edd8a4e.tar.xz
[audiomack:album] Update testcase
Diffstat (limited to 'test/helper.py')
-rw-r--r--test/helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helper.py b/test/helper.py
index c416f388c..27a68091f 100644
--- a/test/helper.py
+++ b/test/helper.py
@@ -140,7 +140,7 @@ def expect_info_dict(self, got_dict, expected_dict):
# Are checkable fields missing from the test case definition?
test_info_dict = dict((key, value if not isinstance(value, compat_str) or len(value) < 250 else 'md5:' + md5(value))
for key, value in got_dict.items()
- if value and key in ('title', 'description', 'uploader', 'upload_date', 'timestamp', 'uploader_id', 'location'))
+ if value and key in ('id', 'title', 'description', 'uploader', 'upload_date', 'timestamp', 'uploader_id', 'location'))
missing_keys = set(test_info_dict.keys()) - set(expected_dict.keys())
if missing_keys:
def _repr(v):