test/xds: Fix test_grpc import path (#6180)

This commit is contained in:
Zach Reyes 2023-04-10 17:08:17 -04:00 committed by GitHub
parent 81b30924fc
commit efb2f45956
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ func setupGRPCServerWithModeChangeChannelAndServe(t *testing.T, bootstrapContent
})
server := xds.NewGRPCServer(grpc.Creds(insecure.NewCredentials()), modeChangeOpt, xds.BootstrapContentsForTesting(bootstrapContents))
t.Cleanup(server.Stop)
testpb.RegisterTestServiceServer(server, &testService{})
testgrpc.RegisterTestServiceServer(server, &testService{})
// Serve.
go func() {