summary refs log tree commit diff
diff options
context:
space:
mode:
authorcodesparkle <adam.thalhammer@outlook.com>2014-05-21 18:03:17 +1000
committercodesparkle <adam.thalhammer@outlook.com>2014-05-21 18:03:17 +1000
commit1c783bca8853160b66990148cf39ba57d73533da (patch)
tree3f3227f40f77e6042877a1a810bdaa7f9527ac98
parentac73651f66cda01229a77c64a17610986a332079 (diff)
downloadyoutube-dl-1c783bca8853160b66990148cf39ba57d73533da.tar.gz
youtube-dl-1c783bca8853160b66990148cf39ba57d73533da.tar.xz
youtube-dl-1c783bca8853160b66990148cf39ba57d73533da.zip
fixed (what I assume was a typo) that caused test_format_note to always fail.
This test was introduced in c57f7757101690681af2eb8c40c8bf81bbe6e64f.
-rw-r--r--test/test_YoutubeDL.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_YoutubeDL.py b/test/test_YoutubeDL.py
index 8735013f7..e794cc97f 100644
--- a/test/test_YoutubeDL.py
+++ b/test/test_YoutubeDL.py
@@ -67,7 +67,7 @@ class TestFormatSelection(unittest.TestCase):
         downloaded = ydl.downloaded_info_dicts[0]
         self.assertEqual(downloaded['ext'], 'mp4')
 
-        # No prefer_free_formats => prefer mp4 and flv for greater compatibilty
+        # No prefer_free_formats => prefer mp4 and flv for greater compatibility
         ydl = YDL()
         ydl.params['prefer_free_formats'] = False
         formats = [
@@ -279,7 +279,7 @@ class TestFormatSelection(unittest.TestCase):
         self.assertEqual(ydl._format_note({}), '')
         assertRegexpMatches(self, ydl._format_note({
             'vbr': 10,
-        }), '^x\s*10k$')
+        }), '^\s*10k$')
 
 if __name__ == '__main__':
     unittest.main()