From: Robert Griesemer Date: Wed, 11 Jan 2012 19:15:36 +0000 (-0800) Subject: go test: align "no test files" message X-Git-Tag: weekly.2012-01-15~68 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b8f76764cbed4d383d667d53ddd20b5c08fc606d;p=gostls13.git go test: align "no test files" message R=rsc CC=golang-dev https://golang.org/cl/5533070 --- diff --git a/src/cmd/go/test.go b/src/cmd/go/test.go index c1ddb332fa..ad34ba22ac 100644 --- a/src/cmd/go/test.go +++ b/src/cmd/go/test.go @@ -518,7 +518,7 @@ func (b *builder) printTest(a *action) error { // notest is the action for testing a package with no test files. func (b *builder) notest(a *action) error { - fmt.Printf("? \t%s [no test files]\n", a.p.ImportPath) + fmt.Printf("? \t%s\t[no test files]\n", a.p.ImportPath) return nil }