File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -408,7 +408,7 @@ func (s) TestServingModeChanges(t *testing.T) {
408
408
409
409
// New RPCs on that connection should eventually start failing. Due to
410
410
// 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 {
412
412
t .Fatalf ("stream.Send() failed: %v, should continue to work due to graceful stop" , err )
413
413
}
414
414
if err = stream .CloseSend (); err != nil {
@@ -498,7 +498,7 @@ func (s) TestMultipleUpdatesImmediatelySwitch(t *testing.T) {
498
498
if err != nil {
499
499
t .Fatalf ("cc.FullDuplexCall failed: %f" , err )
500
500
}
501
- if err = stream .Send (& testgrpc .StreamingOutputCallRequest {}); err != nil {
501
+ if err = stream .Send (& testpb .StreamingOutputCallRequest {}); err != nil {
502
502
t .Fatalf ("stream.Send() failed: %v, should continue to work due to graceful stop" , err )
503
503
}
504
504
You can’t perform that action at this time.
0 commit comments