aboutsummaryrefslogtreecommitdiffstats
path: root/test/helper.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2022-11-07 02:29:58 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-11-07 02:32:36 +0530
commit46d09f87072e112c363f4a573966d8e48a788562 (patch)
treec945b8e19bf82a19137008e02d8a1aee6f41ca8b /test/helper.py
parentdb4678e448d6e7da9743f4028c94b540fcafc528 (diff)
downloadhypervideo-pre-46d09f87072e112c363f4a573966d8e48a788562.tar.lz
hypervideo-pre-46d09f87072e112c363f4a573966d8e48a788562.tar.xz
hypervideo-pre-46d09f87072e112c363f4a573966d8e48a788562.zip
[cleanup] Lint and misc cleanup
Diffstat (limited to 'test/helper.py')
-rw-r--r--test/helper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/helper.py b/test/helper.py
index e918d8c46..3b3b44580 100644
--- a/test/helper.py
+++ b/test/helper.py
@@ -260,8 +260,8 @@ def expect_info_dict(self, got_dict, expected_dict):
info_dict_str += ''.join(
f' {_repr(k)}: {_repr(test_info_dict[k])},\n'
for k in missing_keys)
- write_string(
- '\n\'info_dict\': {\n' + info_dict_str + '},\n', out=sys.stderr)
+ info_dict_str = '\n\'info_dict\': {\n' + info_dict_str + '},\n'
+ write_string(info_dict_str.replace('\n', '\n '), out=sys.stderr)
self.assertFalse(
missing_keys,
'Missing keys in test definition: %s' % (