Skip to content

Commit

Permalink
fixing the test
Browse files Browse the repository at this point in the history
  • Loading branch information
mrastgoo committed Dec 15, 2024
1 parent ef50a50 commit bbb50d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skrub/_reporting/tests/test_table_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def test_write_html(tmp_path, pd_module, filename_type):
report.write_html(filename)
assert tmp_file_path.exists()

with open(tmp_file_path, "r") as file:
with open(tmp_file_path, "r", encoding="utf-8") as file:
saved_content = file.read()
assert "</html>" in saved_content

Expand Down

0 comments on commit bbb50d9

Please sign in to comment.