1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-09 14:58:54 +00:00

[test_YoutubeDL] Fix invalid escape sequences

This commit is contained in:
Sergey M․ 2017-02-15 23:20:46 +07:00
parent db13c16ef8
commit 398dea3210
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -541,10 +541,10 @@ class TestYoutubeDL(unittest.TestCase):
self.assertEqual(ydl._format_note({}), '')
assertRegexpMatches(self, ydl._format_note({
'vbr': 10,
}), '^\s*10k$')
}), r'^\s*10k$')
assertRegexpMatches(self, ydl._format_note({
'fps': 30,
}), '^30fps$')
}), r'^30fps$')
def test_postprocessors(self):
filename = 'post-processor-testfile.mp4'