Explorar el Código

test: fix unintended test comment in TestFraming

Matt Silverlock hace 6 años
padre
commit
e365eeef09
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      conn_test.go

+ 2 - 2
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