youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 6c4c7539f222cd9e80dfae0b1c9dabbd45d1b3dc
parent c991106706c05401090bcba79e65feae5c7e3fda
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Sat,  9 Apr 2016 22:04:48 +0800

[test/helper] Check got values to be strings for md5: fields

Seen in PBSIE tests

Diffstat:
Mtest/helper.py | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git 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(