Skip to content

Commit 433c534

Browse files
Copilotpelikhan
andauthored
[WIP] Fix failing GitHub Actions job 'Integration: Workflow Features' (#41153)
* Initial plan * Fix Copilot MCP HTTP integration test escaping expectations Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
1 parent 628415f commit 433c534

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

pkg/workflow/copilot_mcp_http_integration_test.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ func TestCopilotEngine_HTTPMCPWithHeaderSecrets_Integration(t *testing.T) {
5050
`"type": "http"`,
5151
`"url": "https://mcp.datadoghq.com/api/unstable/mcp-server/mcp"`,
5252
`"headers": {`,
53-
`"DD_API_KEY": "\${DD_API_KEY}"`,
54-
`"DD_APPLICATION_KEY": "\${DD_APPLICATION_KEY}"`,
55-
`"DD_SITE": "\${DD_SITE}"`,
53+
`"DD_API_KEY": "\\${DD_API_KEY}"`,
54+
`"DD_APPLICATION_KEY": "\\${DD_APPLICATION_KEY}"`,
55+
`"DD_SITE": "\\${DD_SITE}"`,
5656
`"tools": [`,
5757
`"search_datadog_dashboards"`,
5858
`"env": {`,
59-
`"DD_API_KEY": "\${DD_API_KEY}"`,
60-
`"DD_APPLICATION_KEY": "\${DD_APPLICATION_KEY}"`,
61-
`"DD_SITE": "\${DD_SITE}"`,
59+
`"DD_API_KEY": "\\${DD_API_KEY}"`,
60+
`"DD_APPLICATION_KEY": "\\${DD_APPLICATION_KEY}"`,
61+
`"DD_SITE": "\\${DD_SITE}"`,
6262
}
6363

6464
for _, expected := range expectedMCPChecks {

0 commit comments

Comments
 (0)