Skip to content

Commit

Permalink
.replace
Browse files Browse the repository at this point in the history
  • Loading branch information
antgonza committed Jan 17, 2023
1 parent 25e05e3 commit 4a303b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qtp_job_output_folder/tests/test_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ def test_summary(self):
html = html_f.read()

self.assertCountEqual(
sorted(html.split('\n')),
sorted(EXP_HTML.format(aid=aid).split('\n')))
sorted(html.replace('<br/>', '').split('\n')),
sorted(EXP_HTML.format(aid=aid).replace('<br/>', '').split('\n')))


EXP_HTML = (
Expand Down

0 comments on commit 4a303b3

Please sign in to comment.