From b8f76764cbed4d383d667d53ddd20b5c08fc606d Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Wed, 11 Jan 2012 11:15:36 -0800 Subject: [PATCH] go test: align "no test files" message R=rsc CC=golang-dev https://golang.org/cl/5533070 --- src/cmd/go/test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/go/test.go b/src/cmd/go/test.go index c1ddb332fa8..ad34ba22ac3 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 }