remove flushing

This commit is contained in:
Zack Scholl 2019-05-08 21:33:30 +00:00
parent da54ae060a
commit 0388e07689
2 changed files with 1 additions and 5 deletions

View File

@ -11,7 +11,6 @@ import (
)
func TestComm(t *testing.T) {
defer log.Flush()
token := make([]byte, 40000000)
rand.Read(token)

View File

@ -5,12 +5,11 @@ import (
"testing"
"time"
log "github.com/schollz/logger"
"github.com/schollz/croc/v6/src/tcp"
log "github.com/schollz/logger"
)
func TestCroc(t *testing.T) {
defer log.Flush()
go tcp.Run("debug", "8081", "8082,8083,8084,8085")
go tcp.Run("debug", "8082")
@ -19,9 +18,7 @@ func TestCroc(t *testing.T) {
go tcp.Run("debug", "8085")
time.Sleep(300 * time.Millisecond)
log.Flush()
log.Debug("setting up sender")
log.Flush()
sender, err := New(Options{
IsSender: true,
SharedSecret: "test",