mirror of
https://github.com/schollz/croc.git
synced 2025-10-11 13:21:00 +02:00
test should not exceed max bytes
This commit is contained in:
parent
b60a841044
commit
b0125b63e7
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestComm(t *testing.T) {
|
func TestComm(t *testing.T) {
|
||||||
token := make([]byte, 40000000)
|
token := make([]byte, MAXBYTES)
|
||||||
rand.Read(token)
|
rand.Read(token)
|
||||||
|
|
||||||
port := "8001"
|
port := "8001"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue