Remove unnecessary trailing space

This commit is contained in:
Daniel Rainer
2025-06-10 16:04:58 +02:00
parent 7c57b746d0
commit 2d7a6063b9

View File

@@ -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