diff options
author | sepro <sepro@sepr0.com> | 2025-03-22 22:34:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-22 22:34:07 +0100 |
commit | fe4f14b8369038e7c58f7de546d76de1ce3a91ce (patch) | |
tree | 1859c4126ae83c8029445525bdcb2b9f0b07c43d /test | |
parent | b872ffec50fd50f790a5a490e006a369a28a3df3 (diff) |
[ie/viki] Remove extractors (#12703)
Closes #2907, Closes #2869
Authored by: seproDev
Diffstat (limited to 'test')
-rw-r--r-- | test/test_subtitles.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/test/test_subtitles.py b/test/test_subtitles.py index f3b005617..efd69b33d 100644 --- a/test/test_subtitles.py +++ b/test/test_subtitles.py @@ -23,7 +23,6 @@ from yt_dlp.extractor import ( TedTalkIE, ThePlatformFeedIE, ThePlatformIE, - VikiIE, VimeoIE, WallaIE, YoutubeIE, @@ -332,20 +331,6 @@ class TestRaiPlaySubtitles(BaseTestSubtitles): @is_download_test -@unittest.skip('IE broken - DRM only') -class TestVikiSubtitles(BaseTestSubtitles): - url = 'http://www.viki.com/videos/1060846v-punch-episode-18' - IE = VikiIE - - def test_allsubtitles(self): - self.DL.params['writesubtitles'] = True - self.DL.params['allsubtitles'] = True - subtitles = self.getSubtitles() - self.assertEqual(set(subtitles.keys()), {'en'}) - self.assertEqual(md5(subtitles['en']), '53cb083a5914b2d84ef1ab67b880d18a') - - -@is_download_test class TestThePlatformSubtitles(BaseTestSubtitles): # from http://www.3playmedia.com/services-features/tools/integrations/theplatform/ # (see http://theplatform.com/about/partners/type/subtitles-closed-captioning/) |