aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2023-06-21 05:15:03 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2023-06-21 06:10:39 +0530
commitebe1b4e34f43c3acad30e4bcb8484681a030c114 (patch)
treee9f4c6f29c1f6ac8b4a8030552d6d3759108d835 /test
parenta35af4306d24c56c6358f89cdf204860d1cd62b4 (diff)
downloadhypervideo-pre-ebe1b4e34f43c3acad30e4bcb8484681a030c114.tar.lz
hypervideo-pre-ebe1b4e34f43c3acad30e4bcb8484681a030c114.tar.xz
hypervideo-pre-ebe1b4e34f43c3acad30e4bcb8484681a030c114.zip
[outtmpl] Fix some minor bugs
Closes #7164
Diffstat (limited to 'test')
-rw-r--r--test/test_YoutubeDL.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_YoutubeDL.py b/test/test_YoutubeDL.py
index ee6c52713..ccc9e36f3 100644
--- a/test/test_YoutubeDL.py
+++ b/test/test_YoutubeDL.py
@@ -755,7 +755,7 @@ class TestYoutubeDL(unittest.TestCase):
test('%(id)d %(id)r', "1234 '1234'")
test('%(id)r %(height)r', "'1234' 1080")
test('%(ext)s-%(ext|def)d', 'mp4-def')
- test('%(width|0)04d', '0000')
+ test('%(width|0)04d', '0')
test('a%(width|b)d', 'ab', outtmpl_na_placeholder='none')
FORMATS = self.outtmpl_info['formats']