Skip to content

Commit 7ae5b03

Browse files
committed
fix: apply ruff formatting
1 parent faff0bb commit 7ae5b03

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/issues/test_88_random_error.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,7 @@ async def client(
9494
# Second call should timeout (slow operation with minimal timeout)
9595
# Use very small timeout to trigger quickly without waiting
9696
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
97+
await session.call_tool("slow", read_timeout_seconds=0.000001) # artificial timeout that always fails
10098
assert "Timed out while waiting" in str(exc_info.value)
10199

102100
# release the slow request not to have hanging process

0 commit comments

Comments
 (0)