diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-03-13 16:40:53 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-03-13 16:40:53 +0100 |
commit | 84769e708c81a1600ff24e7140c889fefc4aa6ef (patch) | |
tree | d3088902c608bc329c722fa8565d58d82343499a /test | |
parent | 9d2ecdbc712d4e500dd0207041392b143082ad00 (diff) |
[ninegag] Fix extraction
Diffstat (limited to 'test')
-rw-r--r-- | test/test_download.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_download.py b/test/test_download.py index bbbb6b78a..c241d9324 100644 --- a/test/test_download.py +++ b/test/test_download.py @@ -144,6 +144,10 @@ def generator(test_case): self.assertTrue( isinstance(got, compat_str) and match_rex.match(got), u'field %s (value: %r) should match %r' % (info_field, got, match_str)) + elif isinstance(expected, type): + got = info_dict.get(info_field) + self.assertTrue(isinstance(got, expected), + u'Expected type %r, but got value %r of type %r' % (expected, got, type(got))) else: if isinstance(expected, compat_str) and expected.startswith('md5:'): got = 'md5:' + md5(info_dict.get(info_field)) |