Minor fixes
authorPornophage <pornophage@gmail.com>
Sat, 25 Jan 2014 01:34:08 +0000 (02:34 +0100)
committerPornophage <pornophage@gmail.com>
Sat, 25 Jan 2014 01:34:08 +0000 (02:34 +0100)
Remove empty description
Set correct md5 test

youtube_dl/extractor/cliphunter.py

index 9c90e2f9801536c431de707ffaa9f422f52ad35b..2d8c0963060349db0dd93877a00170e888763865 100644 (file)
@@ -32,12 +32,11 @@ class CliphunterIE(InfoExtractor):
     _TESTS = [{
         u'url': u'http://www.cliphunter.com/w/1012420/Fun_Jynx_Maze_solo',
         u'file': u'1012420.flv',
-        u'md5': u'49f72e2fd2977e6e518be9836dcf861e',
+        u'md5': u'15e7740f30428abf70f4223478dc1225',
         u'info_dict': {
-            u"title": u"Fun Jynx Maze solo",
+            u'title': u'Fun Jynx Maze solo',
         }
-    },
-    ]
+    }]
 
     def _real_extract(self, url):
         mobj = re.match(self._VALID_URL, url)
@@ -65,5 +64,4 @@ class CliphunterIE(InfoExtractor):
             'id': video_id,
             'title': video_title,
             'formats': formats,
-            'description': '',
         }