Browse Source

[test_compat] Ignore unicode_literals

Philipp Hagemeister 10 years ago
parent
commit
278143df5b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/test_compat.py

+ 1 - 1
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__':