Skip to content

Commit

Permalink
const-ing
Browse files Browse the repository at this point in the history
  • Loading branch information
arvindbr8 committed Feb 28, 2024
1 parent 485ea4c commit 6265227
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/xds/xds_client_federation_test.go
Expand Up @@ -178,9 +178,9 @@ func (s) TestClientSideFederationWithOnlyXDSTPStyleLDS(t *testing.T) {
const serviceName = "my-service-client-side-xds/2nd component"

// All other resources are with old style name.
rdsName := "route-" + serviceName
cdsName := "cluster-" + serviceName
edsName := "endpoints-" + serviceName
const rdsName = "route-" + serviceName
const cdsName = "cluster-" + serviceName
const edsName = "endpoints-" + serviceName

// Resource update sent to go-control-plane mgmt server.
resourceUpdate := e2e.UpdateOptions{
Expand Down

0 comments on commit 6265227

Please sign in to comment.