Unify coding cookie
[youtube-dl] / youtube_dl / extractor / folketinget.py
index 68e2db94385bc7f51d7f27a68d61d5e4289ba0c9..b3df93f28fc6471b1c5fe7303415c223042261bc 100644 (file)
@@ -1,4 +1,4 @@
-# -*- coding: utf-8 -*-
+# coding: utf-8
 from __future__ import unicode_literals
 
 from .common import InfoExtractor
@@ -16,6 +16,7 @@ class FolketingetIE(InfoExtractor):
     _VALID_URL = r'https?://(?:www\.)?ft\.dk/webtv/video/[^?#]*?\.(?P<id>[0-9]+)\.aspx'
     _TEST = {
         'url': 'http://www.ft.dk/webtv/video/20141/eru/td.1165642.aspx?as=1#player',
+        'md5': '6269e8626fa1a891bf5369b386ae996a',
         'info_dict': {
             'id': '1165642',
             'ext': 'mp4',
@@ -30,8 +31,9 @@ class FolketingetIE(InfoExtractor):
             'duration': 3960,
         },
         'params': {
-            'skip_download': 'rtmpdump required',
-        }
+            # rtmp download
+            'skip_download': True,
+        },
     }
 
     def _real_extract(self, url):