Skip to content

Commit

Permalink
Fixed EncodingWarning
Browse files Browse the repository at this point in the history
  • Loading branch information
agronholm committed Mar 13, 2023
1 parent 42e342c commit 933d556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cli/test_unpack.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def test_unpack(wheel_paths, tmp_path):
def test_unpack_executable_bit(tmp_path):
wheel_path = tmp_path / "test-1.0-py3-none-any.whl"
script_path = tmp_path / "script"
script_path.write_text("test script")
script_path.write_bytes(b"test script")
script_path.chmod(0o777)
with WheelFile(wheel_path, "w") as wf:
wf.write(str(script_path), "script")
Expand Down

0 comments on commit 933d556

Please sign in to comment.