From 779f21ad07e75b1e38acb8fab7a6322eda212893 Mon Sep 17 00:00:00 2001 From: Jonathan Gonzalez V Date: Mon, 30 Jan 2023 08:04:54 -0300 Subject: [PATCH] chore: test Signed-off-by: Jonathan Gonzalez V --- summarize_test_results.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/summarize_test_results.py b/summarize_test_results.py index c0e81c3..3dd9a70 100644 --- a/summarize_test_results.py +++ b/summarize_test_results.py @@ -440,7 +440,7 @@ def format_by_test(summary, structure, file_out=None): """print metrics bucketed by test class""" title = structure["title"] anchor = structure["anchor"] - print(f"\n

{title}:link:

\n", file=file_out) + print(f"\n

{title}:link:

\n", file=file_out) table = PrettyTable(align="l") table.field_names = structure["header"] @@ -477,7 +477,7 @@ def format_by_code(summary, structure, file_out=None): """print metrics bucketed by failing code""" title = structure["title"] anchor = structure["anchor"] - print(f"\n

{title}:link:

\n", file=file_out) + print(f"\n

{title}:link:

\n", file=file_out) table = PrettyTable(align="l") table.field_names = structure["header"]