We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ec2a11 commit d432257Copy full SHA for d432257
tests/test_examples.py
@@ -69,8 +69,9 @@ async def test_desktop(monkeypatch):
69
content = result.contents[0]
70
assert isinstance(content, TextResourceContents)
71
assert isinstance(content.text, str)
72
- assert "/fake/path/file1.txt" in content.text
73
- assert "/fake/path/file2.txt" in content.text
+
+ assert Path("/fake/path/file1.txt").as_posix() in content.text
74
+ assert Path("/fake/path/file2.txt").as_posix() in content.text
75
76
77
@pytest.mark.parametrize("example", find_examples("README.md"), ids=str)
0 commit comments