From 6124ac97b5f6de7d7088e2a9f0a8ee1c3bc84f40 Mon Sep 17 00:00:00 2001 From: Nick Irvine <115657443+nfi-hashicorp@users.noreply.github.com> Date: Thu, 29 Jun 2023 12:44:48 -0700 Subject: [PATCH] fix namespace in 7.2 --- test-integ/peering_commontopo/ac7_2_rotate_leader_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-integ/peering_commontopo/ac7_2_rotate_leader_test.go b/test-integ/peering_commontopo/ac7_2_rotate_leader_test.go index 267e491ff51f..091f4727d1f8 100644 --- a/test-integ/peering_commontopo/ac7_2_rotate_leader_test.go +++ b/test-integ/peering_commontopo/ac7_2_rotate_leader_test.go @@ -168,7 +168,7 @@ func (s *ac7_2RotateLeaderSuite) test(t *testing.T, ct *commonTopo) { found := 0 foundI := 0 for i, svc := range ceAsES.Services { - if svc.Name == s.sidServer.Name && svc.Namespace == s.sidServer.Namespace { + if svc.Name == s.sidServer.Name && svc.Namespace == utils.DefaultToEmpty(s.sidServer.Namespace) { found += 1 foundI = i }