From 52e23632fc29be90369d5d479f8b4f752f4b1dc4 Mon Sep 17 00:00:00 2001 From: Zach Reyes <39203661+zasweq@users.noreply.github.com> Date: Mon, 22 Jan 2024 19:31:38 -0500 Subject: [PATCH] test/xds: Use different import path for gRPC Messages (#6933) --- test/xds/xds_server_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/xds/xds_server_test.go b/test/xds/xds_server_test.go index 52004d86d732..b26d00425115 100644 --- a/test/xds/xds_server_test.go +++ b/test/xds/xds_server_test.go @@ -408,7 +408,7 @@ func (s) TestServingModeChanges(t *testing.T) { // New RPCs on that connection should eventually start failing. Due to // Graceful Stop any started streams continue to work. - if err = stream.Send(&testgrpc.StreamingOutputCallRequest{}); err != nil { + if err = stream.Send(&testpb.StreamingOutputCallRequest{}); err != nil { t.Fatalf("stream.Send() failed: %v, should continue to work due to graceful stop", err) } if err = stream.CloseSend(); err != nil { @@ -498,7 +498,7 @@ func (s) TestMultipleUpdatesImmediatelySwitch(t *testing.T) { if err != nil { t.Fatalf("cc.FullDuplexCall failed: %f", err) } - if err = stream.Send(&testgrpc.StreamingOutputCallRequest{}); err != nil { + if err = stream.Send(&testpb.StreamingOutputCallRequest{}); err != nil { t.Fatalf("stream.Send() failed: %v, should continue to work due to graceful stop", err) }