Skip to content

Commit

Permalink
fix open(pathlib.Path()) in 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky committed Oct 21, 2018
1 parent d739113 commit 3346b67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyqt5_tools/tests/test_designer.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ def test_creates_test_widget(tmp_path):
timeout=10,
)

with open(file_path, 'rb') as f:
with open(str(file_path), 'rb') as f:
assert f.read() == pyqt5_tools.tests.testbutton.test_file_contents

0 comments on commit 3346b67

Please sign in to comment.