Skip to content

Commit ce8d7a5

Browse files
committed
Update end_to_end_test_utilities.py
1 parent 1d79348 commit ce8d7a5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/scripts/end_to_end_test_utilities.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ def run_codeflash_command(
9494

9595
output = []
9696
for line in process.stdout:
97+
line = line.strip().encode("utf-8").decode("utf-8")
9798
logging.info(line.strip())
9899
output.append(line)
99100

@@ -194,6 +195,7 @@ def run_trace_test(cwd: pathlib.Path, config: TestConfig, expected_improvement_p
194195

195196
output = []
196197
for line in process.stdout:
198+
line = line.strip().encode("utf-8").decode("utf-8")
197199
logging.info(line.strip())
198200
output.append(line)
199201

0 commit comments

Comments
 (0)