Skip to content

Commit

Permalink
test/xds: Use different import path for gRPC Messages (#6933)
Browse files Browse the repository at this point in the history
  • Loading branch information
zasweq committed Jan 23, 2024
1 parent 67e50be commit 52e2363
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/xds/xds_server_test.go
Expand Up @@ -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 {
Expand Down Expand Up @@ -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)
}

Expand Down

0 comments on commit 52e2363

Please sign in to comment.