aboutsummaryrefslogtreecommitdiff
path: root/test/test_compat.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-11-03 19:12:06 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-11-03 19:12:06 +0100
commit278143df5b026f76e52bad8500a32780b52a1e35 (patch)
tree1a2c940c5a992269a318f03ce8618e11235c4828 /test/test_compat.py
parentfdca55fe34a6d120c597641472856a296f1e80db (diff)
downloadyoutube-dl-278143df5b026f76e52bad8500a32780b52a1e35.tar.xz
[test_compat] Ignore unicode_literals
Diffstat (limited to 'test/test_compat.py')
-rw-r--r--test/test_compat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_compat.py b/test/test_compat.py
index d1a33ddc9..4a7fc3606 100644
--- a/test/test_compat.py
+++ b/test/test_compat.py
@@ -37,7 +37,7 @@ class TestCompat(unittest.TestCase):
all_names = youtube_dl.compat.__all__
present_names = set(filter(
lambda c: '_' in c and not c.startswith('_'),
- dir(youtube_dl.compat)))
+ dir(youtube_dl.compat))) - set(['unicode_literals'])
self.assertEqual(all_names, sorted(present_names))
if __name__ == '__main__':