From f10ffc625a560802afba7955bbcc6946fa05ef42 Mon Sep 17 00:00:00 2001 From: hc-github-team-consul-core Date: Fri, 15 Mar 2024 12:23:38 -0400 Subject: [PATCH] Backport of Fix typo in values file for sync catalog test into release/1.2.x (#3762) backport of commit d3c1de461875b7374e8c7c4d5218db66c19edeb2 Co-authored-by: Ashwin Venkatesh --- acceptance/tests/sync/sync_catalog_test.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/acceptance/tests/sync/sync_catalog_test.go b/acceptance/tests/sync/sync_catalog_test.go index dc30570422..27b88db2ac 100644 --- a/acceptance/tests/sync/sync_catalog_test.go +++ b/acceptance/tests/sync/sync_catalog_test.go @@ -9,13 +9,14 @@ import ( "testing" "time" + "github.com/hashicorp/consul/api" + "github.com/hashicorp/consul/sdk/testutil/retry" + "github.com/stretchr/testify/require" + "github.com/hashicorp/consul-k8s/acceptance/framework/consul" "github.com/hashicorp/consul-k8s/acceptance/framework/helpers" "github.com/hashicorp/consul-k8s/acceptance/framework/k8s" "github.com/hashicorp/consul-k8s/acceptance/framework/logger" - "github.com/hashicorp/consul/api" - "github.com/hashicorp/consul/sdk/testutil/retry" - "github.com/stretchr/testify/require" ) // Test that sync catalog works in both the default installation and @@ -105,7 +106,7 @@ func TestSyncCatalogWithIngress(t *testing.T) { ctx := suite.Environment().DefaultContext(t) helmValues := map[string]string{ "syncCatalog.enabled": "true", - "syncCatalog.ingres.enabled": "true", + "syncCatalog.ingress.enabled": "true", "global.tls.enabled": strconv.FormatBool(c.secure), "global.acls.manageSystemACLs": strconv.FormatBool(c.secure), }