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 faff0bb commit 7ae5b03Copy full SHA for 7ae5b03
tests/issues/test_88_random_error.py
@@ -94,9 +94,7 @@ async def client(
94
# Second call should timeout (slow operation with minimal timeout)
95
# Use very small timeout to trigger quickly without waiting
96
with pytest.raises(McpError) as exc_info:
97
- await session.call_tool(
98
- "slow", read_timeout_seconds=0.000001
99
- ) # artificial timeout that always fails
+ await session.call_tool("slow", read_timeout_seconds=0.000001) # artificial timeout that always fails
100
assert "Timed out while waiting" in str(exc_info.value)
101
102
# release the slow request not to have hanging process
0 commit comments