Skip to content

Commit

Permalink
internal: fix symbol undefined build failure (#4353)
Browse files Browse the repository at this point in the history
Caused by git merge
  • Loading branch information
menghanl authored Apr 21, 2021
1 parent 970aa09 commit 671707b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xds/internal/balancer/clusterimpl/balancer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ func TestReResolution(t *testing.T) {
newXDSClient = func() (xdsClientInterface, error) { return xdsC, nil }
defer func() { newXDSClient = oldNewXDSClient }()

builder := balancer.Get(clusterImplName)
builder := balancer.Get(Name)
cc := testutils.NewTestClientConn(t)
b := builder.Build(cc, balancer.BuildOptions{})
defer b.Close()
Expand All @@ -491,7 +491,7 @@ func TestReResolution(t *testing.T) {
ResolverState: resolver.State{
Addresses: testBackendAddrs,
},
BalancerConfig: &lbConfig{
BalancerConfig: &LBConfig{
Cluster: testClusterName,
EDSServiceName: testServiceName,
ChildPolicy: &internalserviceconfig.BalancerConfig{
Expand Down

0 comments on commit 671707b

Please sign in to comment.