diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-06-09 14:43:51 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-06-09 15:37:15 +0530 |
commit | 639f1cea9285d79c0eef4d2ec332b505c37ef34e (patch) | |
tree | 4da962a89dc99c58f5d6755cc0ea1583d908473a /test/test_utils.py | |
parent | b5c5d84f60addd49a010a1f485d28f1b41676631 (diff) | |
download | hypervideo-pre-639f1cea9285d79c0eef4d2ec332b505c37ef34e.tar.lz hypervideo-pre-639f1cea9285d79c0eef4d2ec332b505c37ef34e.tar.xz hypervideo-pre-639f1cea9285d79c0eef4d2ec332b505c37ef34e.zip |
Fix `%d` and empty default in outtmpl
Closes #388
Diffstat (limited to 'test/test_utils.py')
-rw-r--r-- | test/test_utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_utils.py b/test/test_utils.py index 04d355b4f..9ff13a369 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -126,6 +126,7 @@ class TestUtil(unittest.TestCase): self.assertTrue(timeconvert('bougrg') is None) def test_sanitize_filename(self): + self.assertEqual(sanitize_filename(''), '') self.assertEqual(sanitize_filename('abc'), 'abc') self.assertEqual(sanitize_filename('abc_d-e'), 'abc_d-e') |