test: fix unintended test comment in TestFraming

This commit is contained in:
Matt Silverlock 2019-08-24 22:20:45 -07:00
parent c3e18be99d
commit e365eeef09
1 changed files with 2 additions and 2 deletions

View File

@ -56,9 +56,9 @@ func newTestConn(r io.Reader, w io.Writer, isServer bool) *Conn {
func TestFraming(t *testing.T) {
frameSizes := []int{
0, 1, 2, 124, 125, 126, 127, 128, 129, 65534, 65535,
// 65536, 65537
0, 1, 2, 124, 125, 126, 127, 128, 129, 65534, 65535, 65536, 65537,
}
var readChunkers = []struct {
name string
f func(io.Reader) io.Reader