Skip to content

Commit 9bccd49

Browse files
authored
Merge pull request #1763 from QwenLM/fix/simple-mcp-server-test
fix(integration-tests): correct MCP tool name in simple-mcp-server test
2 parents c8e8581 + c71cc9c commit 9bccd49

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

integration-tests/simple-mcp-server.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,9 @@ describe('simple-mcp-server', () => {
215215
// Just run the command - MCP server config is in settings.json
216216
const output = await rig.run('add 5 and 10, use tool if you can.');
217217

218-
const foundToolCall = await rig.waitForToolCall('add');
218+
const foundToolCall = await rig.waitForToolCall(
219+
'mcp__addition-server__add',
220+
);
219221

220222
expect(foundToolCall, 'Expected to find an add tool call').toBeTruthy();
221223

0 commit comments

Comments
 (0)