Skip to content
This repository has been archived by the owner on Jul 4, 2024. It is now read-only.

Fix e2e test for devmain #3640

Merged
merged 2 commits into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion chart/compass/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ global:
name: compass-console
e2e_tests:
dir: dev/incubator/
version: "PR-3639"
version: "PR-3640"
name: compass-e2e-tests
isLocalEnv: false
isForTesting: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ func TestCreateApplicationTemplate(t *testing.T) {
err = testctx.Tc.RunOperationWithCustomTenant(ctx, certSecuredGraphQLClient, tenantID, createRegionalApplicationTemplateRequest2, &regionalOutput2)
defer fixtures.CleanupApplicationTemplate(t, ctx, certSecuredGraphQLClient, tenantID, regionalOutput2)
require.Error(t, err)
require.Contains(t, err.Error(), `Application Template with "systemRole" label is global and already exists`)
require.Contains(t, err.Error(), fmt.Sprintf(`Application Template with "%s" label is global and already exists`, conf.ApplicationTemplateProductLabel))
})

t.Run("Error for self register when distinguished label or product label have not been defined and the call is made with a certificate", func(t *testing.T) {
Expand Down