From d027e8920d4dd8e2f6824d950189eb8eed13cda9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 6 Apr 2026 03:39:04 +0000 Subject: [PATCH] fix: update TestMCPServer_ToolIcons and tool list to include checks tool Agent-Logs-Url: https://github.com/github/gh-aw/sessions/aab709ce-ad03-4490-a920-6bdbf092e425 Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- pkg/cli/mcp_server_tools_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/cli/mcp_server_tools_test.go b/pkg/cli/mcp_server_tools_test.go index c7e5f54a2bc..a1f71387049 100644 --- a/pkg/cli/mcp_server_tools_test.go +++ b/pkg/cli/mcp_server_tools_test.go @@ -47,7 +47,7 @@ func TestMCPServer_ListTools(t *testing.T) { } // Verify expected tools are present - expectedTools := []string{"status", "compile", "logs", "audit", "mcp-inspect", "add", "update", "fix"} + expectedTools := []string{"status", "compile", "logs", "audit", "checks", "mcp-inspect", "add", "update", "fix"} toolNames := make(map[string]bool) for _, tool := range result.Tools { toolNames[tool.Name] = true @@ -264,6 +264,7 @@ func TestMCPServer_ToolIcons(t *testing.T) { "compile": "🔨", "logs": "📜", "audit": "🔍", + "checks": "✅", "mcp-inspect": "🔎", "add": "➕", "update": "🔄",