From 5e64cda339bfaf650d353af688ff0a91f1192799 Mon Sep 17 00:00:00 2001 From: Alexander Tokmakov Date: Thu, 2 Feb 2023 15:28:01 +0300 Subject: [PATCH] Update tests/ci/report.py Co-authored-by: Alexander Gololobov <440544+davenger@users.noreply.github.com> --- tests/ci/report.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ci/report.py b/tests/ci/report.py index e1601cab805..5422c463fb8 100644 --- a/tests/ci/report.py +++ b/tests/ci/report.py @@ -225,8 +225,8 @@ def read_test_results(results_path: Path, with_raw_logs: bool = True) -> TestRes # the 4th value is a pythonic list, e.g. ['file1', 'file2'] if with_raw_logs: # Python does not support TSV, so we unescape manually - result.set_raw_logs(line[3]).replace("\\t", "\t").replace( - "\\n", "\n" + result.set_raw_logs(line[3].replace("\\t", "\t").replace( + "\\n", "\n") ) else: result.set_log_files(line[3])