We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25e05e3 commit 4a303b3Copy full SHA for 4a303b3
qtp_job_output_folder/tests/test_summary.py
@@ -68,8 +68,8 @@ def test_summary(self):
68
html = html_f.read()
69
70
self.assertCountEqual(
71
- sorted(html.split('\n')),
72
- sorted(EXP_HTML.format(aid=aid).split('\n')))
+ sorted(html.replace('<br/>', '').split('\n')),
+ sorted(EXP_HTML.format(aid=aid).replace('<br/>', '').split('\n')))
73
74
75
EXP_HTML = (
0 commit comments