Skip to content

Commit 4a303b3

Browse files
committed
.replace
1 parent 25e05e3 commit 4a303b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

qtp_job_output_folder/tests/test_summary.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ def test_summary(self):
6868
html = html_f.read()
6969

7070
self.assertCountEqual(
71-
sorted(html.split('\n')),
72-
sorted(EXP_HTML.format(aid=aid).split('\n')))
71+
sorted(html.replace('<br/>', '').split('\n')),
72+
sorted(EXP_HTML.format(aid=aid).replace('<br/>', '').split('\n')))
7373

7474

7575
EXP_HTML = (

0 commit comments

Comments
 (0)