Skip to content

Commit

Permalink
chore: test
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Gonzalez V <jonathan.gonzalez@enterprisedb.com>
  • Loading branch information
sxd committed Jan 30, 2023
1 parent 957c99c commit 779f21a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions summarize_test_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -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<h2><a id={achor} name={anchor}>{title}</a><a href=#user-content-{anchor}>:link:</a></h2>\n", file=file_out)
print(f"\n<h2><a id={anchor} name={anchor}>{title}</a><a href=#user-content-{anchor}>:link:</a></h2>\n", file=file_out)

table = PrettyTable(align="l")
table.field_names = structure["header"]
Expand Down Expand Up @@ -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<h2><a id={achor} name={anchor}>{title}</a><a href=#user-content-{anchor}>:link:</a></h2>\n", file=file_out)
print(f"\n<h2><a id={anchor} name={anchor}>{title}</a><a href=#user-content-{anchor}>:link:</a></h2>\n", file=file_out)

table = PrettyTable(align="l")
table.field_names = structure["header"]
Expand Down

0 comments on commit 779f21a

Please # to comment.