diff options
author | Remita Amine <remitamine@gmail.com> | 2020-12-29 16:59:31 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2020-12-29 16:59:31 +0100 |
commit | 5966095e65b5365e8e4d211ffca6ab50514d3c84 (patch) | |
tree | 172bbdb0f0d817f294dcc6b4b22c27af66461ec3 | |
parent | 9ee984fc760c9a3f4818055ff28ea886aadc58cb (diff) |
[aenetworks] fix HistoryPlayerIE tests
-rw-r--r-- | youtube_dl/extractor/aenetworks.py | 1 |
1 files changed, 1 insertions, 0 deletions
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<domain>(?:history|biography)\.com)/player/(?P<id>\d+)' + _TESTS = [] def _real_extract(self, url): domain, video_id = re.match(self._VALID_URL, url).groups() |