Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkg/workflow/gateway_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -776,8 +776,8 @@ func TestGenerateMCPGatewayStartStep_WithEnvVars(t *testing.T) {
ghAwPos := strings.Index(stepStr, "GH_AW_SAFE_OUTPUTS")
githubMcpPos := strings.Index(stepStr, "GITHUB_MCP_SERVER_TOKEN")
githubTokenPos := strings.Index(stepStr, "GITHUB_TOKEN")
assert.True(t, ghAwPos < githubMcpPos, "GH_AW_SAFE_OUTPUTS should come before GITHUB_MCP_SERVER_TOKEN")
assert.True(t, githubMcpPos < githubTokenPos, "GITHUB_MCP_SERVER_TOKEN should come before GITHUB_TOKEN")
assert.Less(t, ghAwPos, githubMcpPos, "GH_AW_SAFE_OUTPUTS should come before GITHUB_MCP_SERVER_TOKEN")
assert.Less(t, githubMcpPos, githubTokenPos, "GITHUB_MCP_SERVER_TOKEN should come before GITHUB_TOKEN")
}

func TestGenerateMCPGatewayStartStep_WithoutEnvVars(t *testing.T) {
Expand Down