summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2020-06-06 04:16:31 +0700
committerSergey M․ <dstftw@gmail.com>2020-06-06 04:22:10 +0700
commit84213ea8d41d5fe1608333a16ac578dccdf9a915 (patch)
tree9017a73126941136edb0525e7f9f2648ff6512fa /test
parent562de77f41d0c08df9dbb08cfa86ba6c7d239c5a (diff)
[youtube] Extract chapters from JSON (closes #24819)
Diffstat (limited to 'test')
-rw-r--r--test/test_youtube_chapters.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_youtube_chapters.py b/test/test_youtube_chapters.py
index 324ca8525..e69c57377 100644
--- a/test/test_youtube_chapters.py
+++ b/test/test_youtube_chapters.py
@@ -267,7 +267,7 @@ class TestYoutubeChapters(unittest.TestCase):
for description, duration, expected_chapters in self._TEST_CASES:
ie = YoutubeIE()
expect_value(
- self, ie._extract_chapters(description, duration),
+ self, ie._extract_chapters_from_description(description, duration),
expected_chapters, None)