diff --git a/integration/testrunner/grpcrunner/grpc.go b/integration/testrunner/grpcrunner/grpc.go index 4110e4ba3..8dc9e4257 100644 --- a/integration/testrunner/grpcrunner/grpc.go +++ b/integration/testrunner/grpcrunner/grpc.go @@ -157,7 +157,8 @@ func (g *GRPC) runFibonacciCheck(ctx context.Context, tb testing.TB) { break } if err != nil { - tb.Errorf("Err while reading fibonacci stream: %v", err) + tb.Errorf("failed to read fibonacci stream: %v", err) + break } tb.Logf("Received value %v", place.Value) }