From 448bbbc38c0f260447d0aae579d678885aa0f16c Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Tue, 6 Aug 2019 20:44:15 +0900 Subject: [PATCH] integration-tests: gofmt --- integration-tests/server_tester.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/integration-tests/server_tester.go b/integration-tests/server_tester.go index d4631318..fd39db35 100644 --- a/integration-tests/server_tester.go +++ b/integration-tests/server_tester.go @@ -627,15 +627,15 @@ func streamEnded(mainSr *serverResponse, streams map[uint32]*serverResponse, sr } type serverResponse struct { - status int // HTTP status code - header http.Header // response header fields - body []byte // response body - streamID uint32 // stream ID in HTTP/2 - errCode http2.ErrCode // error code received in HTTP/2 RST_STREAM or GOAWAY - connErr bool // true if HTTP/2 connection error - connClose bool // Connection: close is included in response header in HTTP/1 test - reqHeader http.Header // http request header, currently only sotres pushed request header - pushResponse []*serverResponse // pushed response + status int // HTTP status code + header http.Header // response header fields + body []byte // response body + streamID uint32 // stream ID in HTTP/2 + errCode http2.ErrCode // error code received in HTTP/2 RST_STREAM or GOAWAY + connErr bool // true if HTTP/2 connection error + connClose bool // Connection: close is included in response header in HTTP/1 test + reqHeader http.Header // http request header, currently only sotres pushed request header + pushResponse []*serverResponse // pushed response } type ByStreamID []*serverResponse