From b0125b63e7ee86f6adb2750e705f23f3c4a9b48f Mon Sep 17 00:00:00 2001 From: Zack Scholl Date: Fri, 27 Mar 2020 09:38:09 -0700 Subject: [PATCH] test should not exceed max bytes --- src/comm/comm_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comm/comm_test.go b/src/comm/comm_test.go index 6f986f4c..2b18959d 100644 --- a/src/comm/comm_test.go +++ b/src/comm/comm_test.go @@ -11,7 +11,7 @@ import ( ) func TestComm(t *testing.T) { - token := make([]byte, 40000000) + token := make([]byte, MAXBYTES) rand.Read(token) port := "8001"