diff options
Diffstat (limited to 'test/test_YoutubeDL.py')
| -rw-r--r-- | test/test_YoutubeDL.py | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/test/test_YoutubeDL.py b/test/test_YoutubeDL.py index 59f7ab49d..efbee3b71 100644 --- a/test/test_YoutubeDL.py +++ b/test/test_YoutubeDL.py @@ -502,6 +502,9 @@ 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' | 
