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 f73042f commit 832ec4bCopy full SHA for 832ec4b
plugins/communication_protocols/mcp/tests/test_mcp_transport.py
@@ -55,7 +55,7 @@ async def test_register_manual_discovers_tools(transport: McpCommunicationProtoc
55
assert len(register_result.manual.tools) == 4
56
57
# Find the echo tool
58
- echo_tool = next((tool for tool in register_result.manual.tools if tool.name ==f"{SERVER_NAME}.echo"), None)
+ echo_tool = next((tool for tool in register_result.manual.tools if tool.name == f"{SERVER_NAME}.echo"), None)
59
assert echo_tool is not None
60
assert "echoes back its input" in echo_tool.description
61
0 commit comments