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 ba385fa commit a94b549Copy full SHA for a94b549
tests/client/test_stdio.py
@@ -91,4 +91,8 @@ async def test_stdio_client_nonexistent_command():
91
92
# The error should indicate the command was not found
93
error_message = str(exc_info.value)
94
- assert "nonexistent" in error_message or "not found" in error_message.lower()
+ assert (
95
+ "nonexistent" in error_message
96
+ or "not found" in error_message.lower()
97
+ or "cannot find the file" in error_message.lower() # Windows error message
98
+ )
0 commit comments