diff options
author | dirkf <fieldhouse@gmx.net> | 2023-02-05 15:43:43 +0000 |
---|---|---|
committer | dirkf <fieldhouse@gmx.net> | 2023-02-13 03:54:51 +0000 |
commit | 249f2b631629471af5cfee2993e62de58c8f5990 (patch) | |
tree | cc00dd1f595e1e2674c99616014d5b71018a7e04 /test | |
parent | d6b14ba3163b255d0dd8d3b9ddf25d977b8262e7 (diff) |
[compat] Systematise compat_ naming
[skip ci]
Diffstat (limited to 'test')
-rw-r--r-- | test/test_compat.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_compat.py b/test/test_compat.py index 0986cff37..4dddd9a38 100644 --- a/test/test_compat.py +++ b/test/test_compat.py @@ -48,7 +48,8 @@ class TestCompat(unittest.TestCase): def test_all_present(self): import youtube_dl.compat - all_names = youtube_dl.compat.__all__ + all_names = sorted( + youtube_dl.compat.__all__ + youtube_dl.compat.legacy) present_names = set(filter( lambda c: '_' in c and not c.startswith('_'), dir(youtube_dl.compat))) - set(['unicode_literals']) |