diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-11-26 21:06:14 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-11-26 21:06:14 +0700 |
commit | d08dcd2dbd4c0d63ff2f4dd504aceceabfa212cc (patch) | |
tree | cf8475330482472bf31a77234ed5c58753e189e6 /test | |
parent | 7512aa986f517c301fb3272584d21c8d5cec720f (diff) |
[test_YoutubeDL] Fix typo (closes #14856)
Diffstat (limited to 'test')
-rw-r--r-- | test/test_YoutubeDL.py | 8 |
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') |