Fixing stdout on tests

This commit is contained in:
chrislovecnm 2017-09-29 12:22:36 -06:00
parent ea314784b5
commit 9bf197830f
2 changed files with 0 additions and 3 deletions

View File

@ -163,7 +163,6 @@ F`
// We do need to cleanup, as otherwise we get some spurious changes on complex diffs // We do need to cleanup, as otherwise we get some spurious changes on complex diffs
diffs = dmp.DiffCleanupSemantic(diffs) diffs = dmp.DiffCleanupSemantic(diffs)
t.Logf("diffs %v", diffs)
} }
actual := FormatDiff(l, r) actual := FormatDiff(l, r)

View File

@ -17,7 +17,6 @@ limitations under the License.
package fi package fi
import ( import (
"fmt"
"math/big" "math/big"
"math/rand" "math/rand"
"testing" "testing"
@ -35,7 +34,6 @@ func TestBigInt_Format(t *testing.T) {
s1 := r.String() s1 := r.String()
s2 := r.Text(10) s2 := r.Text(10)
fmt.Printf("%s\n", s1)
if s1 != s2 { if s1 != s2 {
t.Fatalf("%s not the same as %s", s1, s2) t.Fatalf("%s not the same as %s", s1, s2)
} }