blob: 9dadd4e699c18f18a0f3fc7cb9ca79f1341a79c3 [file] [log] [blame]
Carl Mastrangelo368a3042015-12-01 16:19:23 -08001package http2interop
2
3import (
4 "testing"
5)
6
Carl Mastrangelo3e21ba42015-12-04 16:49:33 -08007func TestSoonSmallMaxFrameSize(t *testing.T) {
8 defer Report(t)
9 if *testCase != "framing" {
Carl Mastrangelo368a3042015-12-01 16:19:23 -080010 t.SkipNow()
11 }
12 ctx := InteropCtx(t)
13 err := testSmallMaxFrameSize(ctx)
14 matchError(t, err, "Got goaway frame")
15}