Skip to content

Commit 2a2c946

Browse files
committed
fix: replace backslashes with forward slash
1 parent ec62372 commit 2a2c946

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_examples.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,5 @@ async def test_desktop(monkeypatch):
6868
content = result.contents[0]
6969
assert isinstance(content, TextResourceContents)
7070
assert isinstance(content.text, str)
71-
assert "/fake/path/file1.txt" in content.text
72-
assert "/fake/path/file2.txt" in content.text
71+
assert "/fake/path/file1.txt" in content.text.replace('\\\\','/')
72+
assert "/fake/path/file2.txt" in content.text.replace('\\\\','/')

0 commit comments

Comments
 (0)