From 4bf6249ba5f168b8b5f0115fe638bdf2740a8011 Mon Sep 17 00:00:00 2001 From: Eric Roshan-Eisner Date: Fri, 28 Sep 2012 10:01:09 +1000 Subject: [PATCH] testing: remove redundant whitespace in output R=golang-dev, r CC=golang-dev https://golang.org/cl/6565061 --- src/pkg/testing/benchmark.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/testing/benchmark.go b/src/pkg/testing/benchmark.go index 78708c44b69..7a8cc1c4edf 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()) }