projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e4cbb5f
)
[test/helper] Clarify which field failed an assertion
author
Philipp Hagemeister
<phihag@phihag.de>
Tue, 13 May 2014 07:41:36 +0000
(09:41 +0200)
committer
Philipp Hagemeister
<phihag@phihag.de>
Tue, 13 May 2014 07:41:36 +0000
(09:41 +0200)
test/helper.py
patch
|
blob
|
history
diff --git
a/test/helper.py
b/test/helper.py
index d5e0a603e38285109f4892587ccfb9edffcb901d..230d2bd67ab06b4db552bff30c5620f83673ca93 100644
(file)
--- 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' % (expecte
d, got, type(got)))
+ u'Expected type %r
for field %s, but got value %r of type %r' % (expected, info_fiel
d, got, type(got)))
else:
if isinstance(expected, compat_str) and expected.startswith('md5:'):
got = 'md5:' + md5(got_dict.get(info_field))