From ea4317aae973766278841baf2b8f0057b3ffdc32 Mon Sep 17 00:00:00 2001 From: Corey Nicholson Date: Sun, 9 Jul 2017 19:32:19 +0000 Subject: [PATCH] [vlive:playlist] Remove a test --- youtube_dl/extractor/vlive.py | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/youtube_dl/extractor/vlive.py b/youtube_dl/extractor/vlive.py index 6b72b8c8b..f3825db5c 100644 --- a/youtube_dl/extractor/vlive.py +++ b/youtube_dl/extractor/vlive.py @@ -270,21 +270,14 @@ class VLiveChannelIE(InfoExtractor): class VLivePlaylistIE(InfoExtractor): IE_NAME = 'vlive:playlist' _VALID_URL = r'https?://(?:(?:www|m)\.)?vlive\.tv/video/(?P[0-9]+)/playlist/(?P[0-9]+)' - _TESTS = [{ - 'url': 'http://www.vlive.tv/video/30824/playlist/30826', - 'info_dict': { - 'id': '30826', - 'title': 'TWICE TV5 - TWICE in SWITZERLAND' - }, - 'playlist_mincount': 20 - }, { + _TEST = { 'url': 'http://www.vlive.tv/video/22867/playlist/22912', 'info_dict': { 'id': '22912', 'title': 'Valentine Day Message from TWICE' }, 'playlist_mincount': 9 - }] + } def _real_extract(self, url): playlist_id = self._match_id(url)