summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-03 11:51:01 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-03 11:51:01 +0200
commitc8dbccde30d9ca06d4c9305329a9aacd10420276 (patch)
tree39030642204627209197fdb778f3f8878eb64159
parent4ff7a0f1f6e6b1ad1743330d318dfe85806923b7 (diff)
downloadyoutube-dl-c8dbccde30d9ca06d4c9305329a9aacd10420276.tar.gz
youtube-dl-c8dbccde30d9ca06d4c9305329a9aacd10420276.tar.xz
youtube-dl-c8dbccde30d9ca06d4c9305329a9aacd10420276.zip
[orf] Remove the test video, they seem to expire in one week
-rw-r--r--youtube_dl/extractor/orf.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/youtube_dl/extractor/orf.py b/youtube_dl/extractor/orf.py
index 41ef8e992..cfca2a063 100644
--- a/youtube_dl/extractor/orf.py
+++ b/youtube_dl/extractor/orf.py
@@ -14,19 +14,6 @@ from ..utils import (
 class ORFIE(InfoExtractor):
     _VALID_URL = r'https?://tvthek.orf.at/(programs/.+?/episodes|topics/.+?)/(?P<id>\d+)'
 
-    _TEST = {
-        u'url': u'http://tvthek.orf.at/programs/1171769-Wetter-ZIB/episodes/6557323-Wetter',
-        u'file': u'6566957.flv',
-        u'info_dict': {
-            u'title': u'Wetter',
-            u'description': u'Christa Kummer, Marcus Wadsak und Kollegen  präsentieren abwechselnd ihre täglichen Wetterprognosen für Österreich.\r \r Mehr Wetter unter wetter.ORF.at',
-        },
-        u'params': {
-            # It uses rtmp
-            u'skip_download': True,
-        }
-    }
-
     def _real_extract(self, url):
         mobj = re.match(self._VALID_URL, url)
         playlist_id = mobj.group('id')