Skip to content

Commit 6049a80

Browse files
committed
Fix govet checks
1 parent cf01996 commit 6049a80

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

test/end2end_test.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5387,10 +5387,10 @@ func (s) TestClientWriteFailsAfterServerClosesStream(t *testing.T) {
53875387
type windowSizeConfig struct {
53885388
serverStaticWindowSize bool
53895389
clientStaticWindowSize bool
5390-
serverStream int32
5391-
serverConn int32
5392-
clientStream int32
5393-
clientConn int32
5390+
serverStream int32
5391+
serverConn int32
5392+
clientStream int32
5393+
clientConn int32
53945394
}
53955395

53965396
func (s) TestConfigurableWindowSizeWithLargeWindow(t *testing.T) {
@@ -5400,10 +5400,10 @@ func (s) TestConfigurableWindowSizeWithLargeWindow(t *testing.T) {
54005400
wc := windowSizeConfig{
54015401
serverStaticWindowSize: true,
54025402
clientStaticWindowSize: true,
5403-
serverStream: 8 * 1024 * 1024,
5404-
serverConn: 12 * 1024 * 1024,
5405-
clientStream: 6 * 1024 * 1024,
5406-
clientConn: 8 * 1024 * 1024,
5403+
serverStream: 8 * 1024 * 1024,
5404+
serverConn: 12 * 1024 * 1024,
5405+
clientStream: 6 * 1024 * 1024,
5406+
clientConn: 8 * 1024 * 1024,
54075407
}
54085408
for _, e := range listTestEnv() {
54095409
testConfigurableWindowSize(t, e, wc)

0 commit comments

Comments
 (0)