Skip to content

Commit 150afa5

Browse files
committed
use default grpc client
1 parent 4024cd1 commit 150afa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conformance/tests/grpcroute-weight.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ func testGRPCDistribution(t *testing.T, suite *suite.ConformanceTestSuite, gwAdd
8787
totalRequests = 500.0
8888
)
8989
var (
90-
grpcClient = suite.GRPCClient
9190
g errgroup.Group
9291
seenMutex sync.Mutex
9392
seen = make(map[string]float64, 3 /* number of backends */)
@@ -96,6 +95,7 @@ func testGRPCDistribution(t *testing.T, suite *suite.ConformanceTestSuite, gwAdd
9695
"grpc-infra-backend-v2": 0.3,
9796
"grpc-infra-backend-v3": 0.0,
9897
}
98+
grpcClient = &grpc.DefaultClient{}
9999
)
100100
g.SetLimit(concurrentRequests)
101101
for i := 0.0; i < totalRequests; i++ {

0 commit comments

Comments
 (0)