Skip to content

Commit 6524c7b

Browse files
authored
github,test: fix internal CI build (#8556)
Fix the following errors: * only use one space to separate words * use service codedgen import name for stream type RELEASE NOTES: N/A
1 parent dc80249 commit 6524c7b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Thank you for your PR. Please read and follow
1+
Thank you for your PR. Please read and follow
22
https://github.com/grpc/grpc-go/blob/master/CONTRIBUTING.md, especially the
33
"Guidelines for Pull Requests" section, and then delete this text before
44
entering your PR description.

test/transport_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ func (s) TestCancelWhileServerWaitingForFlowControl(t *testing.T) {
240240
serverDoneCh := make(chan struct{}, 2)
241241
const flowControlWindowSize = 65535
242242
ss := &stubserver.StubServer{
243-
StreamingOutputCallF: func(_ *testpb.StreamingOutputCallRequest, stream testpb.TestService_StreamingOutputCallServer) error {
243+
StreamingOutputCallF: func(_ *testpb.StreamingOutputCallRequest, stream testgrpc.TestService_StreamingOutputCallServer) error {
244244
// Send a large message to exhaust the client's flow control window.
245245
stream.Send(&testpb.StreamingOutputCallResponse{
246246
Payload: &testpb.Payload{

0 commit comments

Comments
 (0)