aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-03-10 01:03:18 +0600
committerSergey M․ <dstftw@gmail.com>2016-03-10 01:03:18 +0600
commit5d583bdf6cff8161e2df87ba1a0c97a943596eab (patch)
tree69a30d4d4a0510ddb9e64af4688bc3ad19a13b9c /test
parent1e501364d5a7f5c99037e6791616ee48989bbaea (diff)
downloadyoutube-dl-5d583bdf6cff8161e2df87ba1a0c97a943596eab.tar.xz
[YoutubeDL] Improve _format_note
Diffstat (limited to 'test')
-rw-r--r--test/test_YoutubeDL.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_YoutubeDL.py b/test/test_YoutubeDL.py
index 59f7ab49d..bf78b005f 100644
--- a/test/test_YoutubeDL.py
+++ b/test/test_YoutubeDL.py
@@ -502,6 +502,10 @@ class TestYoutubeDL(unittest.TestCase):
assertRegexpMatches(self, ydl._format_note({
'vbr': 10,
}), '^\s*10k$')
+ assertRegexpMatches(self, ydl._format_note({
+ 'fps': 30,
+ }), '^30fps$')
+
def test_postprocessors(self):
filename = 'post-processor-testfile.mp4'