test should not exceed max bytes

This commit is contained in:
Zack Scholl 2020-03-27 09:38:09 -07:00
parent b60a841044
commit b0125b63e7
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ import (
)
func TestComm(t *testing.T) {
token := make([]byte, 40000000)
token := make([]byte, MAXBYTES)
rand.Read(token)
port := "8001"