Skip to content

Commit ed1cf97

Browse files
[Bench] Minor fix in printing test's output
1 parent 59678ad commit ed1cf97

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

devops/scripts/benchmarks/tests/test_integration.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,14 @@ def run_main(self, *args):
9393
],
9494
capture_output=True,
9595
)
96-
print("MAIN_PY_STDOUT:\n" + proc.stdout.decode() if proc.stdout else "<empty>")
97-
print("MAIN_PY_STDERR:\n" + proc.stderr.decode() if proc.stderr else "<empty>")
96+
print(
97+
"MAIN_PY_STDOUT:",
98+
"\n" + proc.stdout.decode() if proc.stdout else " <empty>",
99+
)
100+
print(
101+
"MAIN_PY_STDERR:",
102+
"\n" + proc.stderr.decode() if proc.stderr else " <empty>",
103+
)
98104
return proc.returncode
99105

100106
def get_output(self):

0 commit comments

Comments
 (0)