[youtube] Add test with '};' in tags

merge-requests/5/head
Sergey M․ 2015-11-23 21:02:37 +06:00
parent a72778d364
commit 61f92af1cf
1 changed files with 6 additions and 1 deletions

View File

@ -693,7 +693,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
'only_matching': True,
},
{
# Title with JS-like syntax "};"
# Title with JS-like syntax "};" (see https://github.com/rg3/youtube-dl/issues/7468)
'url': 'https://www.youtube.com/watch?v=lsguqyKfVQg',
'info_dict': {
'id': 'lsguqyKfVQg',
@ -708,6 +708,11 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
'skip_download': True,
},
},
{
# Tags with '};' (see https://github.com/rg3/youtube-dl/issues/7468)
'url': 'https://www.youtube.com/watch?v=Ms7iBXnlUO8',
'only_matching': True,
},
]
def __init__(self, *args, **kwargs):