aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/http2_interop/s6.5_test.go
blob: 48e8ced5764a61598207fa4e70f5314ea4b05769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package http2interop

import (
	"testing"
)

func TestSmallMaxFrameSize(t *testing.T) {
	if *testCase != "experimental" {
		t.SkipNow()
	}
	ctx := InteropCtx(t)
	err := testSmallMaxFrameSize(ctx)
	matchError(t, err, "Got goaway frame")
}