From ecfd8549a6745a7a24bd34282b496c52a769fa98 Mon Sep 17 00:00:00 2001 From: Leonid Bugaev Date: Tue, 31 May 2016 20:57:19 +0500 Subject: [PATCH] Remove debug --- Makefile | 2 +- output_file_test.go | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 7372f13..4eb8a86 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ race: $(RUN) go test ./... $(ARGS) -v -race -timeout 15s test: - $(RUN) go test ./. -race -timeout 60s $(LDFLAGS) $(ARGS) -v + $(RUN) go test ./. -timeout 60s $(LDFLAGS) $(ARGS) -v test_all: $(RUN) go test ./... -timeout 60s $(LDFLAGS) $(ARGS) -v diff --git a/output_file_test.go b/output_file_test.go index d7831b0..51a27f7 100644 --- a/output_file_test.go +++ b/output_file_test.go @@ -3,7 +3,6 @@ package main import ( "fmt" "io" - "log" "os" "sync" "sync/atomic" @@ -39,7 +38,6 @@ func TestFileOutput(t *testing.T) { input2 := NewFileInput("/tmp/test_requests.gor") output2 := NewTestOutput(func(data []byte) { atomic.AddInt64(&counter, 1) - log.Println(counter) wg.Done() })