From: Robert Griesemer Date: Sat, 11 Feb 2012 05:47:18 +0000 (-0800) Subject: gofmt: fix error message in test X-Git-Tag: weekly.2012-02-14~121 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2233942e3c030acffda5952ee3677bedaebf6079;p=gostls13.git gofmt: fix error message in test R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5652066 --- diff --git a/src/cmd/gofmt/long_test.go b/src/cmd/gofmt/long_test.go index 8a8617c2e8..1332b323af 100644 --- a/src/cmd/gofmt/long_test.go +++ b/src/cmd/gofmt/long_test.go @@ -83,7 +83,7 @@ func testFile(t *testing.T, b1, b2 *bytes.Buffer, filename string) { // the first and 2nd result should be identical if bytes.Compare(b1.Bytes(), b2.Bytes()) != 0 { - t.Errorf("%s: not idempotent", filename) + t.Errorf("gofmt %s not idempotent", filename) } }