Remove debug print, go fmt my lines

pull/44/head
Sean Talts 2014-03-07 14:57:40 -05:00
parent 814eb1589b
commit ec1a3f179c
1 changed files with 5 additions and 6 deletions

View File

@ -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()
}