1
1
Fork 0
mirror of https://github.com/schollz/croc.git synced 2025-10-11 05:11:06 +02:00

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

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"