From: Remita Amine Date: Tue, 29 Dec 2020 15:59:31 +0000 (+0100) Subject: [aenetworks] fix HistoryPlayerIE tests X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=5966095e65b5365e8e4d211ffca6ab50514d3c84;p=youtube-dl [aenetworks] fix HistoryPlayerIE tests --- diff --git a/youtube_dl/extractor/aenetworks.py b/youtube_dl/extractor/aenetworks.py index 237012978..8e4963131 100644 --- a/youtube_dl/extractor/aenetworks.py +++ b/youtube_dl/extractor/aenetworks.py @@ -306,6 +306,7 @@ class HistoryTopicIE(AENetworksBaseIE): class HistoryPlayerIE(AENetworksBaseIE): IE_NAME = 'history:player' _VALID_URL = r'https?://(?:www\.)?(?P(?:history|biography)\.com)/player/(?P\d+)' + _TESTS = [] def _real_extract(self, url): domain, video_id = re.match(self._VALID_URL, url).groups()