diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-11-22 22:37:34 +0100 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-11-24 16:47:20 +0100 |
commit | 6d2fd490cf677979ac7ce0a4ab7b26f447cceb76 (patch) | |
tree | d345a69984d65bf37c21ae5da2ce94288aa14130 /test | |
parent | mkosi: Add github CLI to tools (diff) | |
download | systemd-6d2fd490cf677979ac7ce0a4ab7b26f447cceb76.tar.xz systemd-6d2fd490cf677979ac7ce0a4ab7b26f447cceb76.zip |
integration-test-wrapper: Remove unneeded format strings
Diffstat (limited to 'test')
-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 |