From 6d2fd490cf677979ac7ce0a4ab7b26f447cceb76 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Fri, 22 Nov 2024 22:37:34 +0100 Subject: integration-test-wrapper: Remove unneeded format strings --- test/integration-test-wrapper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/integration-test-wrapper.py b/test/integration-test-wrapper.py index a680ddee53..d9c035e99f 100755 --- a/test/integration-test-wrapper.py +++ b/test/integration-test-wrapper.py @@ -70,7 +70,7 @@ def main(): shell = bool(int(os.getenv("TEST_SHELL", "0"))) if shell and not sys.stderr.isatty(): - print(f"--interactive must be passed to meson test to use TEST_SHELL=1", file=sys.stderr) + print("--interactive must be passed to meson test to use TEST_SHELL=1", file=sys.stderr) exit(1) name = args.name + (f"-{i}" if (i := os.getenv("MESON_TEST_ITERATION")) else "") @@ -84,7 +84,7 @@ def main(): if not shell: dropin += textwrap.dedent( - f""" + """ [Unit] SuccessAction=exit SuccessActionExitStatus=123 -- cgit v1.2.3