diff options
Diffstat (limited to 'test/integration-test-wrapper.py')
-rwxr-xr-x | test/integration-test-wrapper.py | 4 |
1 files changed, 2 insertions, 2 deletions
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 |