Browse Source

[test_YoutubeDL] Fix invalid escape sequences

master
Sergey M․ 8 years ago
parent
commit
398dea3210
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 2 additions and 2 deletions
  1. 4
      test/test_YoutubeDL.py

4
test/test_YoutubeDL.py

@ -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'

Loading…
Cancel
Save