]> Cypherpunks repositories - gostls13.git/commitdiff
go test: align "no test files" message
authorRobert Griesemer <gri@golang.org>
Wed, 11 Jan 2012 19:15:36 +0000 (11:15 -0800)
committerRobert Griesemer <gri@golang.org>
Wed, 11 Jan 2012 19:15:36 +0000 (11:15 -0800)
R=rsc
CC=golang-dev
https://golang.org/cl/5533070

src/cmd/go/test.go

index c1ddb332fa85a07bc95187f1fc218ad9e3bfd623..ad34ba22ac3610da3de217e4333c0a311372525a 100644 (file)
@@ -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
 }