Skip to content

Commit 8a75f99

Browse files
committed
Use UTF-8 in setuptools/tests/test_easy_install.py
1 parent eae4e26 commit 8a75f99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setuptools/tests/test_easy_install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ def test_many_pth_distributions_merge_together(self, tmpdir):
361361

362362
@pytest.fixture
363363
def setup_context(tmpdir):
364-
with (tmpdir / 'setup.py').open('w') as f:
364+
with (tmpdir / 'setup.py').open('w', encoding="utf-8") as f:
365365
f.write(SETUP_PY)
366366
with tmpdir.as_cwd():
367367
yield tmpdir

0 commit comments

Comments
 (0)