From 80f7dfce934cfd2dbc4c76a09733616ae6acae0e Mon Sep 17 00:00:00 2001 From: Mark Date: Fri, 28 Feb 2020 18:57:27 -0600 Subject: [PATCH] change bitchute channel test to new channel url (old url is 404) --- youtube_dl/extractor/bitchute.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/youtube_dl/extractor/bitchute.py b/youtube_dl/extractor/bitchute.py index 57f620fc0..8acb45831 100644 --- a/youtube_dl/extractor/bitchute.py +++ b/youtube_dl/extractor/bitchute.py @@ -101,10 +101,10 @@ class BitChuteIE(InfoExtractor): class BitChuteChannelIE(InfoExtractor): _VALID_URL = r'https?://(?:www\.)?bitchute\.com/channel/(?P[^/?#&]+)' _TEST = { - 'url': 'https://www.bitchute.com/channel/victoriaxrave/', - 'playlist_mincount': 185, + 'url': 'https://www.bitchute.com/channel/stargods/', + 'playlist_mincount': 50, 'info_dict': { - 'id': 'victoriaxrave', + 'id': 'stargods', }, }