1
0
mirror of https://github.com/golang/go synced 2024-11-22 14:15:05 -07:00

testing: remove redundant whitespace in output

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/6565061
This commit is contained in:
Eric Roshan-Eisner 2012-09-28 10:01:09 +10:00 committed by Rob Pike
parent 8fdc90acf4
commit 4bf6249ba5

View File

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