From 82d0384f17b36ce0f86116efc94febec521840cc Mon Sep 17 00:00:00 2001 From: Punakshi Date: Thu, 12 Sep 2024 21:37:57 -0700 Subject: [PATCH] [MESH-5465] Update sample gateway asset aliases --- admiral/pkg/clusters/envoyfilter_test.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/admiral/pkg/clusters/envoyfilter_test.go b/admiral/pkg/clusters/envoyfilter_test.go index bb984c9d..ad1efbcf 100644 --- a/admiral/pkg/clusters/envoyfilter_test.go +++ b/admiral/pkg/clusters/envoyfilter_test.go @@ -341,18 +341,18 @@ func TestGetWorkloadSelectorLabels(t *testing.T) { { name: "Given gateway asset alias" + "Should create a map containing the partition and original identifier", - identifier: "sw1.intuit.platform.servicesgateway.servicesgateway", + identifier: "sw1.org.platform.servicesgateway.servicesgateway", expectedList: map[string]string{ common.GetPartitionIdentifier(): "sw1", - common.AssetAlias: "Intuit.platform.servicesgateway.servicesgateway", + common.AssetAlias: "Org.platform.servicesgateway.servicesgateway", }, }, { name: "Given non gateway asset alias" + "Should create a map containing only the asset alias", - identifier: "Intuit.platform.services.payment", + identifier: "Org.platform.services.payment", expectedList: map[string]string{ - common.AssetAlias: "Intuit.platform.services.payment", + common.AssetAlias: "Org.platform.services.payment", }, }, { @@ -366,9 +366,9 @@ func TestGetWorkloadSelectorLabels(t *testing.T) { { name: "Given GW identifier without partition" + "Should create a map containing only the asset alias", - identifier: "Intuit.platform.servicesgateway.servicesgateway", + identifier: "Org.platform.servicesgateway.servicesgateway", expectedList: map[string]string{ - common.AssetAlias: "Intuit.platform.servicesgateway.servicesgateway", + common.AssetAlias: "Org.platform.servicesgateway.servicesgateway", }, }, }