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.
This commit is contained in:
2026-04-14 14:16:26 +05:30
parent 57d2493b9f
commit cd386bd09f
+1 -1
View File
@@ -71,7 +71,7 @@ async function testMCPServer() {
const contentResult = (await client.callTool({ const contentResult = (await client.callTool({
name: "ask262_get_section_content", name: "ask262_get_section_content",
arguments: { arguments: {
sectionId: "sec-array-prototype-map", sectionId: "sec-array.prototype.map",
recursive: false, recursive: false,
}, },
})) as GetSectionContentMCPOutput; })) as GetSectionContentMCPOutput;