about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-11-26 21:06:14 +0700
committerSergey M․ <dstftw@gmail.com>2017-11-26 21:06:14 +0700
commitd08dcd2dbd4c0d63ff2f4dd504aceceabfa212cc (patch)
treecf8475330482472bf31a77234ed5c58753e189e6
parent7512aa986f517c301fb3272584d21c8d5cec720f (diff)
downloadyoutube-dl-d08dcd2dbd4c0d63ff2f4dd504aceceabfa212cc.tar.gz
youtube-dl-d08dcd2dbd4c0d63ff2f4dd504aceceabfa212cc.tar.xz
youtube-dl-d08dcd2dbd4c0d63ff2f4dd504aceceabfa212cc.zip
[test_YoutubeDL] Fix typo (closes #14856)
-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 4af92fbd4..f0f5a8470 100644
--- a/test/test_YoutubeDL.py
+++ b/test/test_YoutubeDL.py
@@ -466,11 +466,11 @@ class TestFormatSelection(unittest.TestCase):
         ydl = YDL({'simulate': True})
         self.assertEqual(ydl._default_format_spec({}), 'bestvideo+bestaudio/best')
 
-        ydl = YDL({'is_live': True})
-        self.assertEqual(ydl._default_format_spec({}), 'best/bestvideo+bestaudio')
+        ydl = YDL({})
+        self.assertEqual(ydl._default_format_spec({'is_live': True}), 'best/bestvideo+bestaudio')
 
-        ydl = YDL({'simulate': True, 'is_live': True})
-        self.assertEqual(ydl._default_format_spec({}), 'bestvideo+bestaudio/best')
+        ydl = YDL({'simulate': True})
+        self.assertEqual(ydl._default_format_spec({'is_live': True}), 'bestvideo+bestaudio/best')
 
         ydl = YDL({'outtmpl': '-'})
         self.assertEqual(ydl._default_format_spec({}), 'best/bestvideo+bestaudio')