summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-10-28 23:18:13 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2013-10-28 23:18:13 +0100
commit646e17a53d3885b84b03045728b3add3d50f513c (patch)
tree53015441a6e14eb29a870a97f7cca5b651576e20
parentdd508b7c4f0dd8881de07a4e8593d4fcdef9bae7 (diff)
downloadyoutube-dl-646e17a53d3885b84b03045728b3add3d50f513c.tar.gz
youtube-dl-646e17a53d3885b84b03045728b3add3d50f513c.tar.xz
youtube-dl-646e17a53d3885b84b03045728b3add3d50f513c.zip
Fix YouTubeDL test
-rw-r--r--test/test_YoutubeDL.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_YoutubeDL.py b/test/test_YoutubeDL.py
index f8cd1bdce..ffebb4ae5 100644
--- a/test/test_YoutubeDL.py
+++ b/test/test_YoutubeDL.py
@@ -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'}