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