mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[SenateISVP] Fix tests
Remove md5 sums. They differs from my PC and the travis worker.
This commit is contained in:
parent
92dcba1e1c
commit
13a11b195f
1 changed files with 1 additions and 4 deletions
|
@ -51,7 +51,6 @@ class SenateISVPIE(InfoExtractor):
|
||||||
_VALID_URL = r'http://www\.senate\.gov/isvp/\?(?P<qs>.+)'
|
_VALID_URL = r'http://www\.senate\.gov/isvp/\?(?P<qs>.+)'
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'http://www.senate.gov/isvp/?comm=judiciary&type=live&stt=&filename=judiciary031715&auto_play=false&wmode=transparent&poster=http%3A%2F%2Fwww.judiciary.senate.gov%2Fthemes%2Fjudiciary%2Fimages%2Fvideo-poster-flash-fit.png',
|
'url': 'http://www.senate.gov/isvp/?comm=judiciary&type=live&stt=&filename=judiciary031715&auto_play=false&wmode=transparent&poster=http%3A%2F%2Fwww.judiciary.senate.gov%2Fthemes%2Fjudiciary%2Fimages%2Fvideo-poster-flash-fit.png',
|
||||||
'md5': '7314c4b96dad66dd8e63dc3518ceaa6f',
|
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': 'judiciary031715',
|
'id': 'judiciary031715',
|
||||||
'ext': 'flv',
|
'ext': 'flv',
|
||||||
|
@ -60,7 +59,6 @@ class SenateISVPIE(InfoExtractor):
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
'url': 'http://www.senate.gov/isvp/?type=live&comm=commerce&filename=commerce011514.mp4&auto_play=false',
|
'url': 'http://www.senate.gov/isvp/?type=live&comm=commerce&filename=commerce011514.mp4&auto_play=false',
|
||||||
'md5': '2917c827513700aa9b70eaebf25116da',
|
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': 'commerce011514',
|
'id': 'commerce011514',
|
||||||
'ext': 'flv',
|
'ext': 'flv',
|
||||||
|
@ -105,8 +103,7 @@ def _real_extract(self, url):
|
||||||
else:
|
else:
|
||||||
title = self._html_search_regex(r'<title>([^<]+)</title>', webpage, video_id)
|
title = self._html_search_regex(r'<title>([^<]+)</title>', webpage, video_id)
|
||||||
poster = qs.get('poster')
|
poster = qs.get('poster')
|
||||||
if poster:
|
thumbnail = poster[0] if poster else None
|
||||||
thumbnail = poster[0]
|
|
||||||
|
|
||||||
video_type = qs['type'][0]
|
video_type = qs['type'][0]
|
||||||
committee = video_type if video_type == 'arch' else qs['comm'][0]
|
committee = video_type if video_type == 'arch' else qs['comm'][0]
|
||||||
|
|
Loading…
Reference in a new issue