Skip to content

Commit

Permalink
chore: explicitly request UTF-8 (for windows compatibility)
Browse files Browse the repository at this point in the history
  • Loading branch information
kalekundert committed Aug 31, 2023
1 parent f992014 commit 068abaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/param_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __eq__(self, other):
def files(request, tmp_path):
for name, contents in request.param.items():
p = tmp_path / name
p.write_text(contents)
p.write_text(contents, encoding='utf-8')

return tmp_path

Expand Down

0 comments on commit 068abaf

Please sign in to comment.