From 2d7a6063b9e2c3d0f95525a11c12c2aabfb610a5 Mon Sep 17 00:00:00 2001 From: Daniel Rainer Date: Tue, 10 Jun 2025 16:04:58 +0200 Subject: [PATCH] Remove unnecessary trailing space --- tests/test_driver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_driver.py b/tests/test_driver.py index 177da01d3..f7cbf27d8 100755 --- a/tests/test_driver.py +++ b/tests/test_driver.py @@ -196,7 +196,7 @@ def main(): print(f"{passcount} / {passcount + failcount} passed ({skipcount} skipped)") if failcount: failstr = "\n ".join(failed) - print(f"{RED}Failed tests{RESET}: \n {failstr}") + print(f"{RED}Failed tests{RESET}:\n {failstr}") if passcount == 0 and failcount == 0 and skipcount: return 125 return 1 if failcount else 0