From: Eric Roshan-Eisner Date: Fri, 28 Sep 2012 00:01:09 +0000 (+1000) Subject: testing: remove redundant whitespace in output X-Git-Tag: go1.1rc2~2297 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=4bf6249ba5f168b8b5f0115fe638bdf2740a8011;p=gostls13.git testing: remove redundant whitespace in output R=golang-dev, r CC=golang-dev https://golang.org/cl/6565061 --- diff --git a/src/pkg/testing/benchmark.go b/src/pkg/testing/benchmark.go index 78708c44b6..7a8cc1c4ed 100644 --- a/src/pkg/testing/benchmark.go +++ b/src/pkg/testing/benchmark.go @@ -256,7 +256,7 @@ func (r BenchmarkResult) String() string { } func (r BenchmarkResult) MemString() string { - return fmt.Sprintf("\t%8d B/op\t%8d allocs/op", + return fmt.Sprintf("%8d B/op\t%8d allocs/op", r.AllocedBytesPerOp(), r.AllocsPerOp()) }