Skip to content

Commit

Permalink
Update test_html.py
Browse files Browse the repository at this point in the history
  • Loading branch information
WiredNerd committed Jan 3, 2024
1 parent 224afba commit bdfca0e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions tests/reporters/test_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,9 +378,15 @@ def test_report_html_output(
report_folder.__truediv__.assert_has_calls(
[
mock.call("index.html"),
mock.call().write_text(env.get_template.return_value.render.return_value.strip.return_value, encoding="utf-8"),
mock.call().write_text(
env.get_template.return_value.render.return_value.strip.return_value,
encoding="utf-8",
),
mock.call(module["report_file"]),
mock.call().write_text(env.get_template.return_value.render.return_value.strip.return_value, encoding="utf-8"),
mock.call().write_text(
env.get_template.return_value.render.return_value.strip.return_value,
encoding="utf-8",
),
]
)

Expand Down

0 comments on commit bdfca0e

Please sign in to comment.