tests: use stdout for everything except errors

This commit is contained in:
Mark Joshwel 2023-06-17 03:42:32 +00:00 committed by Mark Joshwel
parent 0ca3c08447
commit 822874e0e9

View file

@ -121,7 +121,7 @@ def main() -> int:
output = result[1] output = result[1]
stderr.write(indent(text=output, prefix=INDENT * " ") + "\n") print(indent(text=output, prefix=INDENT * " "))
if output != test.expected: if output != test.expected:
raise ContinuityFailure(f"test did not match output") raise ContinuityFailure(f"test did not match output")