projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c991106
)
[test/helper] Check got values to be strings for md5: fields
author
Yen Chi Hsuan
<yan12125@gmail.com>
Sat, 9 Apr 2016 14:04:48 +0000
(22:04 +0800)
committer
Yen Chi Hsuan
<yan12125@gmail.com>
Sat, 9 Apr 2016 14:04:48 +0000
(22:04 +0800)
Seen in PBSIE tests
test/helper.py
patch
|
blob
|
history
diff --git
a/test/helper.py
b/test/helper.py
index f2d87821290095c1f9526f50db5d80ab31969d56..b8e22c5cb42f2e14465e812ed624aaa5e102ff5c 100644
(file)
--- a/
test/helper.py
+++ b/
test/helper.py
@@
-143,6
+143,9
@@
def expect_value(self, got, expected, field):
expect_value(self, item_got, item_expected, field)
else:
if isinstance(expected, compat_str) and expected.startswith('md5:'):
+ self.assertTrue(
+ isinstance(got, compat_str),
+ 'Expected field %s to be a unicode object, but got value %r of type %r' % (field, got, type(got)))
got = 'md5:' + md5(got)
elif isinstance(expected, compat_str) and expected.startswith('mincount:'):
self.assertTrue(