From 993edd3f6e17e966c763bc86dc34125445cec6b6 Mon Sep 17 00:00:00 2001 From: pukkandan Date: Wed, 6 Dec 2023 03:44:11 +0530 Subject: [outtmpl] Support multiplication Related: #8683 --- test/test_YoutubeDL.py | 1 + 1 file changed, 1 insertion(+) (limited to 'test/test_YoutubeDL.py') diff --git a/test/test_YoutubeDL.py b/test/test_YoutubeDL.py index 0cf130db0..48c710e00 100644 --- a/test/test_YoutubeDL.py +++ b/test/test_YoutubeDL.py @@ -797,6 +797,7 @@ class TestYoutubeDL(unittest.TestCase): test('%(title|%)s %(title|%%)s', '% %%') test('%(id+1-height+3)05d', '00158') test('%(width+100)05d', 'NA') + test('%(filesize*8)d', '8192') test('%(formats.0) 15s', ('% 15s' % FORMATS[0], None)) test('%(formats.0)r', (repr(FORMATS[0]), None)) test('%(height.0)03d', '001') -- cgit v1.2.3