diff options
author | trasssh <94064652+trassshhub@users.noreply.github.com> | 2022-01-20 00:04:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-19 21:34:20 +0530 |
commit | 4259402c56142486e511f452e654a7791c6f5484 (patch) | |
tree | e48d46e3d38d91411ef85f561a504d9dd64a0a8a /test/test_subtitles.py | |
parent | dfb7f2a25ddaca8d89805497d4505c669908677f (diff) |
[Ted] Rewrite extractor (#2359)
Closes #2343
Authored by: pukkandan, trassshhub
Diffstat (limited to 'test/test_subtitles.py')
-rw-r--r-- | test/test_subtitles.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_subtitles.py b/test/test_subtitles.py index 9b39dbd39..95e33e54a 100644 --- a/test/test_subtitles.py +++ b/test/test_subtitles.py @@ -13,7 +13,7 @@ from test.helper import FakeYDL, md5, is_download_test from yt_dlp.extractor import ( YoutubeIE, DailymotionIE, - TEDIE, + TedTalkIE, VimeoIE, WallaIE, CeskaTelevizeIE, @@ -141,7 +141,7 @@ class TestDailymotionSubtitles(BaseTestSubtitles): @is_download_test class TestTedSubtitles(BaseTestSubtitles): url = 'http://www.ted.com/talks/dan_dennett_on_our_consciousness.html' - IE = TEDIE + IE = TedTalkIE def test_allsubtitles(self): self.DL.params['writesubtitles'] = True |