From f5f9d26e2cac8bc44296297eae843834b18e814a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 21 Jan 2026 06:35:08 +0000 Subject: [PATCH 1/2] Initial plan From 7e0df0c605c9f6993b483e2dc8c25903b4dca2e3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 21 Jan 2026 06:50:04 +0000 Subject: [PATCH 2/2] Fix testifylint violation in http_mcp_env_vars_test.go Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- pkg/workflow/http_mcp_env_vars_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/workflow/http_mcp_env_vars_test.go b/pkg/workflow/http_mcp_env_vars_test.go index 07a941058e2..9a3f1321078 100644 --- a/pkg/workflow/http_mcp_env_vars_test.go +++ b/pkg/workflow/http_mcp_env_vars_test.go @@ -67,7 +67,7 @@ func TestCollectMCPEnvironmentVariables_MultipleHTTPMCPServers(t *testing.T) { assert.Contains(t, envVars, "TAVILY_API_KEY", "TAVILY_API_KEY should be extracted") assert.Contains(t, envVars, "DD_API_KEY", "DD_API_KEY should be extracted") assert.Contains(t, envVars, "DD_APP_KEY", "DD_APP_KEY should be extracted") - assert.Equal(t, 3, len(envVars), "Should have exactly 3 environment variables") + assert.Len(t, envVars, 3, "Should have exactly 3 environment variables") } // TestCollectMCPEnvironmentVariables_HTTPMCPWithoutSecrets verifies that HTTP MCP servers without secrets don't add env vars