aboutsummaryrefslogtreecommitdiff
path: root/test/test_download.py
diff options
context:
space:
mode:
authorPierre Rudloff <contact@rudloff.pro>2013-08-31 00:37:29 +0200
committerPierre Rudloff <contact@rudloff.pro>2013-08-31 00:37:29 +0200
commit847f582290c6ad6ec0c72760ea3cfa6417d28e3c (patch)
treec12baa61c649ec00e5fdfe35b1f88f0025d54f99 /test/test_download.py
parentcd9c100963e8b8bf651d1f359e5f7812603ca0fd (diff)
parent10f5c016ec6262e5d29327e97fe4f3d1127ccdff (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'test/test_download.py')
-rw-r--r--test/test_download.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/test_download.py b/test/test_download.py
index 21cb2e694..23a66254d 100644
--- a/test/test_download.py
+++ b/test/test_download.py
@@ -127,12 +127,11 @@ def generator(test_case):
info_dict = json.load(infof)
for (info_field, expected) in tc.get('info_dict', {}).items():
if isinstance(expected, compat_str) and expected.startswith('md5:'):
- self.assertEqual(expected, 'md5:' + md5(info_dict.get(info_field)))
+ got = 'md5:' + md5(info_dict.get(info_field))
else:
got = info_dict.get(info_field)
- self.assertEqual(
- expected, got,
- u'invalid value for field %s, expected %r, got %r' % (info_field, expected, got))
+ self.assertEqual(expected, got,
+ u'invalid value for field %s, expected %r, got %r' % (info_field, expected, got))
# If checkable fields are missing from the test case, print the info_dict
test_info_dict = dict((key, value if not isinstance(value, compat_str) or len(value) < 250 else 'md5:' + md5(value))