From cd386bd09f3903ffee984fc7da011f635bb955ef Mon Sep 17 00:00:00 2001 From: bendtherules Date: Tue, 14 Apr 2026 14:16:26 +0530 Subject: [PATCH] fix(test/manual): correct sectionId typo for array.map section Updated the `sectionId` value from `sec-array-prototype-map` to `sec-array.prototype.map` to match the proper identifier format. --- src/test/manual/test-mcp-server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/manual/test-mcp-server.ts b/src/test/manual/test-mcp-server.ts index 2cfdaa7..85c1e08 100644 --- a/src/test/manual/test-mcp-server.ts +++ b/src/test/manual/test-mcp-server.ts @@ -71,7 +71,7 @@ async function testMCPServer() { const contentResult = (await client.callTool({ name: "ask262_get_section_content", arguments: { - sectionId: "sec-array-prototype-map", + sectionId: "sec-array.prototype.map", recursive: false, }, })) as GetSectionContentMCPOutput;