From c71cc9ce0df836d1b4efe9e28ccd2d27d6c1e78b Mon Sep 17 00:00:00 2001 From: tanzhenxin Date: Mon, 9 Feb 2026 10:07:00 +0800 Subject: [PATCH] fix(integration-tests): correct MCP tool name in simple-mcp-server test Co-authored-by: Qwen-Coder --- integration-tests/simple-mcp-server.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/integration-tests/simple-mcp-server.test.ts b/integration-tests/simple-mcp-server.test.ts index d58bd9829c..cdb9ee21ab 100644 --- a/integration-tests/simple-mcp-server.test.ts +++ b/integration-tests/simple-mcp-server.test.ts @@ -215,7 +215,9 @@ describe('simple-mcp-server', () => { // Just run the command - MCP server config is in settings.json const output = await rig.run('add 5 and 10, use tool if you can.'); - const foundToolCall = await rig.waitForToolCall('add'); + const foundToolCall = await rig.waitForToolCall( + 'mcp__addition-server__add', + ); expect(foundToolCall, 'Expected to find an add tool call').toBeTruthy();