Skip to content

Commit 9f534eb

Browse files
committed
compare string for win32
1 parent 0695948 commit 9f534eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/test_pytester.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,7 @@ def test_testdir_makefiles(testdir: Testdir, monkeypatch: MonkeyPatch) -> None:
719719
p1 = created_paths[0]
720720
assert isinstance(p1, Path)
721721
relpath = tmpdir / "foo"
722-
assert p1 == relpath
722+
assert str(p1) == str(relpath)
723723

724724
p2 = created_paths[1]
725725
assert p2.exists()

0 commit comments

Comments
 (0)