1
0
mirror of https://github.com/golang/go synced 2024-11-22 04:44:39 -07:00

go test: align "no test files" message

R=rsc
CC=golang-dev
https://golang.org/cl/5533070
This commit is contained in:
Robert Griesemer 2012-01-11 11:15:36 -08:00
parent 276f177b9c
commit b8f76764cb

View 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
}