From e365eeef09de8fa1b50bd3a4ef6bd473a3720e69 Mon Sep 17 00:00:00 2001 From: Matt Silverlock Date: Sat, 24 Aug 2019 22:20:45 -0700 Subject: [PATCH] test: fix unintended test comment in TestFraming --- conn_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conn_test.go b/conn_test.go index bd96e0a..9194e3e 100644 --- a/conn_test.go +++ b/conn_test.go @@ -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