From 822874e0e932e0206923c7b068ae486f3eadd458 Mon Sep 17 00:00:00 2001 From: Mark Joshwel Date: Sat, 17 Jun 2023 03:42:32 +0000 Subject: [PATCH] tests: use stdout for everything except errors --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 28c8d81..981d836 100644 --- a/test.py +++ b/test.py @@ -121,7 +121,7 @@ def main() -> int: output = result[1] - stderr.write(indent(text=output, prefix=INDENT * " ") + "\n") + print(indent(text=output, prefix=INDENT * " ")) if output != test.expected: raise ContinuityFailure(f"test did not match output")