From a62cf342988d80148fcff608d3ff828238e9573b Mon Sep 17 00:00:00 2001 From: pukkandan Date: Thu, 26 Nov 2020 23:40:40 +0530 Subject: [PATCH] [spreaker] fix SpreakerShowIE test URL --- youtube_dlc/extractor/spreaker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dlc/extractor/spreaker.py b/youtube_dlc/extractor/spreaker.py index beee6670c..6c7e40ae4 100644 --- a/youtube_dlc/extractor/spreaker.py +++ b/youtube_dlc/extractor/spreaker.py @@ -126,7 +126,7 @@ class SpreakerPageIE(InfoExtractor): class SpreakerShowIE(InfoExtractor): _VALID_URL = r'https?://api\.spreaker\.com/show/(?P\d+)' _TESTS = [{ - 'url': 'https://www.spreaker.com/show/3-ninjas-podcast', + 'url': 'https://api.spreaker.com/show/4652058', 'info_dict': { 'id': '4652058', },