changed _TEST url to one that will not expire, so tests would not be failing

This commit is contained in:
kaspi 2015-10-23 22:42:03 -04:00
parent bb15ee2c05
commit 190e684e18

View File

@ -11,11 +11,11 @@ from .common import InfoExtractor
class NprIE(InfoExtractor):
_VALID_URL = r'http://(?:www\.)?npr\.org/player/v2/mediaPlayer.html?.*id=(?P<id>[0-9]+)'
_TEST = {
'url': 'http://www.npr.org/player/v2/mediaPlayer.html?id=445367719',
'url': 'http://www.npr.org/player/v2/mediaPlayer.html?id=449974205',
'info_dict': {
'id': '445367719',
'id': '449974205',
'ext': 'mp4',
'title': 'VEGA INTL. Night School'
'title': 'New Music From Beach House, Chairlift, CMJ Discoveries And More'
}
}