Skip to content

Commit

Permalink
meson_command_tests: Don't pass pathlib.Path to open [skip appveyor]
Browse files Browse the repository at this point in the history
  • Loading branch information
nirbheek authored and jpakkane committed Aug 18, 2018
1 parent 6ecd31a commit 8277d94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_meson_command_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def test_meson_installed(self):
builddir = str(self.tmpdir / 'build4')
(bindir / 'meson').rename(bindir / 'meson.real')
wrapper = (bindir / 'meson')
with open(wrapper, 'w') as f:
with open(str(wrapper), 'w') as f:
f.write('#!/bin/sh\n\nmeson.real "$@"')
wrapper.chmod(0o755)
meson_setup = [str(wrapper), 'setup']
Expand Down

0 comments on commit 8277d94

Please sign in to comment.