Skip to content

Commit 0e530bc

Browse files
committed
fix test
1 parent 99d7f3e commit 0e530bc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cmd/src/mcp_parse_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ func TestLoadMCPToolDefinitions(t *testing.T) {
4646
t.Fatalf("Expected 1 tool, got %d", len(tools))
4747
}
4848

49-
tool := tools["test_tool"]
49+
// Temporary: map keys have normalized names
50+
tool := tools["test-tool"]
5051
if tool == nil {
5152
t.Fatal("Tool 'test_tool' not found")
5253
}

0 commit comments

Comments
 (0)