aboutsummaryrefslogtreecommitdiff
path: root/test/helper.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-04-09 22:04:48 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-04-09 22:04:48 +0800
commit6c4c7539f222cd9e80dfae0b1c9dabbd45d1b3dc (patch)
tree081c826ee59811fe778088af2d0d8fd2dba51b07 /test/helper.py
parentc991106706c05401090bcba79e65feae5c7e3fda (diff)
downloadyoutube-dl-6c4c7539f222cd9e80dfae0b1c9dabbd45d1b3dc.tar.xz
[test/helper] Check got values to be strings for md5: fields
Seen in PBSIE tests
Diffstat (limited to 'test/helper.py')
-rw-r--r--test/helper.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/helper.py b/test/helper.py
index f2d878212..b8e22c5cb 100644
--- 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(