diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/test_YoutubeDL.py | 4 | 
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'  | 
