Skip to content

Commit e3db1d6

Browse files
authored
fix(tests): add audit-diff tool to MCP server tool tests (#25006)
1 parent f673a3c commit e3db1d6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

pkg/cli/mcp_server_tools_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func TestMCPServer_ListTools(t *testing.T) {
4747
}
4848

4949
// Verify expected tools are present
50-
expectedTools := []string{"status", "compile", "logs", "audit", "checks", "mcp-inspect", "add", "update", "fix"}
50+
expectedTools := []string{"status", "compile", "logs", "audit", "audit-diff", "checks", "mcp-inspect", "add", "update", "fix"}
5151
toolNames := make(map[string]bool)
5252
for _, tool := range result.Tools {
5353
toolNames[tool.Name] = true
@@ -264,6 +264,7 @@ func TestMCPServer_ToolIcons(t *testing.T) {
264264
"compile": "🔨",
265265
"logs": "📜",
266266
"audit": "🔍",
267+
"audit-diff": "🔍",
267268
"checks": "✅",
268269
"mcp-inspect": "🔎",
269270
"add": "➕",

0 commit comments

Comments
 (0)