diff options
| author | Sergey M․ <dstftw@gmail.com> | 2017-09-03 17:02:11 +0700 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2017-09-03 17:03:51 +0700 | 
| commit | bc35f075370ed1e67fe71c544e6243a2fc4fa430 (patch) | |
| tree | b2506905cfcc28902f8812d201a141d770eeef04 | |
| parent | 0b4a8eb3ac823c26b037eb368c114ce6d976c5c3 (diff) | |
[vidme:user] Make tests only matching (closes #14054)
| -rw-r--r-- | youtube_dl/extractor/vidme.py | 12 | 
1 files changed, 2 insertions, 10 deletions
diff --git a/youtube_dl/extractor/vidme.py b/youtube_dl/extractor/vidme.py index 39b65ed2f..59adb2377 100644 --- a/youtube_dl/extractor/vidme.py +++ b/youtube_dl/extractor/vidme.py @@ -275,11 +275,7 @@ class VidmeUserIE(VidmeListBaseIE):          'playlist_mincount': 191,      }, {          'url': 'https://vid.me/unsQuare_netWork', -        'info_dict': { -            'id': '16148757', -            'title': 'unsQuare_netWork - %s' % _TITLE, -        }, -        'playlist_mincount': 73, +        'only_matching': True,      }] @@ -297,9 +293,5 @@ class VidmeUserLikesIE(VidmeListBaseIE):          'playlist_mincount': 415,      }, {          'url': 'https://vid.me/Kaleidoscope-Ish/likes', -        'info_dict': { -            'id': '16908594', -            'title': 'Kaleidoscope-Ish - %s' % _TITLE, -        }, -        'playlist_mincount': 43, +        'only_matching': True,      }]  | 
