aboutsummaryrefslogtreecommitdiff
path: root/test/helper.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-05-13 09:41:36 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-05-13 09:41:36 +0200
commitd0a122348e56c68dad1f34d67103ab3a353f602a (patch)
tree85b17f9d891d2d0c3caca616e65b9e5fb0f888f0 /test/helper.py
parente4cbb5f3826b6c70a22e8a8343c000a1e918cc73 (diff)
downloadyoutube-dl-d0a122348e56c68dad1f34d67103ab3a353f602a.tar.xz
[test/helper] Clarify which field failed an assertion
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 d5e0a603e..230d2bd67 100644
--- a/test/helper.py
+++ b/test/helper.py
@@ -107,7 +107,7 @@ def expect_info_dict(self, expected_dict, got_dict):
elif isinstance(expected, type):
got = got_dict.get(info_field)
self.assertTrue(isinstance(got, expected),
- u'Expected type %r, but got value %r of type %r' % (expected, got, type(got)))
+ u'Expected type %r for field %s, but got value %r of type %r' % (expected, info_field, got, type(got)))
else:
if isinstance(expected, compat_str) and expected.startswith('md5:'):
got = 'md5:' + md5(got_dict.get(info_field))