diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-10-17 11:49:51 +0200 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-10-17 11:49:51 +0200 | 
| commit | 36eb802baffda9930e8c821e1adf94b0b53b5ac6 (patch) | |
| tree | f696b8435dd46d9b6ab112e10d98e5d358cfb10c /youtube_dl/extractor/rte.py | |
| parent | 2ccb37beb9e35ebbf2cdf65a4c1641e5286de1e8 (diff) | |
[rte] Replace expired test
According to their webpage it should be available until October 2035.
Diffstat (limited to 'youtube_dl/extractor/rte.py')
| -rw-r--r-- | youtube_dl/extractor/rte.py | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/youtube_dl/extractor/rte.py b/youtube_dl/extractor/rte.py index 427c70866..2811767b9 100644 --- a/youtube_dl/extractor/rte.py +++ b/youtube_dl/extractor/rte.py @@ -11,14 +11,14 @@ from ..utils import (  class RteIE(InfoExtractor):      _VALID_URL = r'http?://(?:www\.)?rte\.ie/player/[^/]{2,3}/show/[^/]+/(?P<id>[0-9]+)'      _TEST = { -        'url': 'http://www.rte.ie/player/de/show/10363114/', +        'url': 'http://www.rte.ie/player/ie/show/iwitness-862/10478715/',          'info_dict': { -            'id': '10363114', +            'id': '10478715',              'ext': 'mp4', -            'title': 'One News', +            'title': 'Watch iWitness  online',              'thumbnail': 're:^https?://.*\.jpg$', -            'description': 'The One O\'Clock News followed by Weather.', -            'duration': 436.844, +            'description': 'iWitness : The spirit of Ireland, one voice and one minute at a time.', +            'duration': 60.046,          },          'params': {              'skip_download': 'f4m fails with --test atm' | 
