aboutsummaryrefslogtreecommitdiffstats
path: root/test/helper.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-08-28 00:58:24 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-08-28 00:58:24 +0200
commit22a6f15061127045f4d6ae1ff4efc922fa372cc2 (patch)
treef0df2ab32f301b3c66b6d9d147e49fe177e27a55 /test/helper.py
parent259454525f9fe41947e6e05882336b7196fc8fce (diff)
downloadyoutube-dl-22a6f15061127045f4d6ae1ff4efc922fa372cc2.zip
youtube-dl-22a6f15061127045f4d6ae1ff4efc922fa372cc2.tar.gz
youtube-dl-22a6f15061127045f4d6ae1ff4efc922fa372cc2.tar.bz2
Move playlist tests to extractors.
From now on, test_download will run these tests. That means we benefit not only from the networking setup in there, but also from the other tests (for example test_all_urls to find problems with _VALID_URLs).
Diffstat (limited to 'test/helper.py')
-rw-r--r--test/helper.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/helper.py b/test/helper.py
index 01b11f6..7f3ab84 100644
--- a/test/helper.py
+++ b/test/helper.py
@@ -103,7 +103,8 @@ def expect_info_dict(self, expected_dict, got_dict):
self.assertTrue(
isinstance(got, compat_str),
- 'Expected a %r object, but got %r' % (compat_str, type(got)))
+ u'Expected a %s object, but got %s for field %s' % (
+ compat_str.__name__, type(got).__name__, info_field))
self.assertTrue(
match_rex.match(got),
u'field %s (value: %r) should match %r' % (info_field, got, match_str))