From ec1a3f179c1736f4e830a447cef115b0c4479290 Mon Sep 17 00:00:00 2001 From: Sean Talts Date: Fri, 7 Mar 2014 14:57:40 -0500 Subject: [PATCH] Remove debug print, go fmt my lines --- suite/suite_test.go | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/suite/suite_test.go b/suite/suite_test.go index 09a01ce..388421f 100644 --- a/suite/suite_test.go +++ b/suite/suite_test.go @@ -1,12 +1,12 @@ package suite import ( - "testing" - "github.com/stretchr/testify/assert" - "os" - "io/ioutil" "errors" "fmt" + "github.com/stretchr/testify/assert" + "io/ioutil" + "os" + "testing" ) // This suite is intended to store values to make sure that only @@ -120,11 +120,10 @@ func (s *SuiteLoggingTester) TestLoggingFail() { type StdoutCapture struct { oldStdout *os.File - readPipe *os.File + readPipe *os.File } func (sc *StdoutCapture) StartCapture() { - fmt.Println("Starting capture1!") sc.oldStdout = os.Stdout sc.readPipe, os.Stdout, _ = os.Pipe() }