diff options
author | trainman261 <trainman261@users.noreply.github.com> | 2023-10-07 01:56:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-06 23:56:19 +0000 |
commit | 19c90e405b4137c06dfe6f9aaa02396df0da93e5 (patch) | |
tree | 83a423a43a1c491a9e4483617ad5bd1af3eb104e /yt_dlp/extractor/cnbc.py | |
parent | e831c80e8b2fc025b3b67d82974cc59e3526fdc8 (diff) |
[cleanup] Update extractor tests (#7718)
Authored by: trainman261
Diffstat (limited to 'yt_dlp/extractor/cnbc.py')
-rw-r--r-- | yt_dlp/extractor/cnbc.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/yt_dlp/extractor/cnbc.py b/yt_dlp/extractor/cnbc.py index 68fd025b7..7d209b6d9 100644 --- a/yt_dlp/extractor/cnbc.py +++ b/yt_dlp/extractor/cnbc.py @@ -19,6 +19,7 @@ class CNBCIE(InfoExtractor): # m3u8 download 'skip_download': True, }, + 'skip': 'Dead link', } def _real_extract(self, url): @@ -49,6 +50,7 @@ class CNBCVideoIE(InfoExtractor): 'params': { 'skip_download': True, }, + 'skip': 'Dead link', } def _real_extract(self, url): |