Fix YouTubeDL test
authorPhilipp Hagemeister <phihag@phihag.de>
Mon, 28 Oct 2013 22:18:13 +0000 (23:18 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Mon, 28 Oct 2013 22:18:13 +0000 (23:18 +0100)
test/test_YoutubeDL.py

index f8cd1bdce9a64ac87ec83ab15130148f580a5291..ffebb4ae55479d63a276b96293299cee0a2705a0 100644 (file)
@@ -62,10 +62,10 @@ class TestFormatSelection(unittest.TestCase):
 
     def test_format_limit(self):
         formats = [
-            {u'format_id': u'meh'},
-            {u'format_id': u'good'},
-            {u'format_id': u'great'},
-            {u'format_id': u'excellent'},
+            {u'format_id': u'meh', u'url': u'http://example.com/meh'},
+            {u'format_id': u'good', u'url': u'http://example.com/good'},
+            {u'format_id': u'great', u'url': u'http://example.com/great'},
+            {u'format_id': u'excellent', u'url': u'http://example.com/exc'},
         ]
         info_dict = {
             u'formats': formats, u'extractor': u'test', 'id': 'testvid'}