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
@ -124,7 +124,6 @@ type StdoutCapture struct {
}
func (sc *StdoutCapture) StartCapture() {
fmt.Println("Starting capture1!")
sc.oldStdout = os.Stdout
sc.readPipe, os.Stdout, _ = os.Pipe()
}