Skip to content

Commit 52e2363

Browse files
authored
test/xds: Use different import path for gRPC Messages (#6933)
1 parent 67e50be commit 52e2363

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/xds/xds_server_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ func (s) TestServingModeChanges(t *testing.T) {
408408

409409
// New RPCs on that connection should eventually start failing. Due to
410410
// Graceful Stop any started streams continue to work.
411-
if err = stream.Send(&testgrpc.StreamingOutputCallRequest{}); err != nil {
411+
if err = stream.Send(&testpb.StreamingOutputCallRequest{}); err != nil {
412412
t.Fatalf("stream.Send() failed: %v, should continue to work due to graceful stop", err)
413413
}
414414
if err = stream.CloseSend(); err != nil {
@@ -498,7 +498,7 @@ func (s) TestMultipleUpdatesImmediatelySwitch(t *testing.T) {
498498
if err != nil {
499499
t.Fatalf("cc.FullDuplexCall failed: %f", err)
500500
}
501-
if err = stream.Send(&testgrpc.StreamingOutputCallRequest{}); err != nil {
501+
if err = stream.Send(&testpb.StreamingOutputCallRequest{}); err != nil {
502502
t.Fatalf("stream.Send() failed: %v, should continue to work due to graceful stop", err)
503503
}
504504

0 commit comments

Comments
 (0)