From 79244ca7360f32db37710ab74c72214146397edf Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Thu, 8 Oct 2009 15:14:54 -0700 Subject: more lgtm files from gofmt R=gri OCL=35485 CL=35488 --- src/pkg/testing/testing.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/pkg/testing/testing.go') diff --git a/src/pkg/testing/testing.go b/src/pkg/testing/testing.go index df542e20b..e8dfee2bd 100644 --- a/src/pkg/testing/testing.go +++ b/src/pkg/testing/testing.go @@ -67,13 +67,13 @@ func (t *T) FailNow() { // Log formats its arguments using default formatting, analogous to Print(), // and records the text in the error log. func (t *T) Log(args ...) { - t.errors += "\t" + tabify(fmt.Sprintln(args)); + t.errors += "\t"+tabify(fmt.Sprintln(args)); } // Log formats its arguments according to the format, analogous to Printf(), // and records the text in the error log. func (t *T) Logf(format string, args ...) { - t.errors += "\t" + tabify(fmt.Sprintf(format, args)); + t.errors += "\t"+tabify(fmt.Sprintf(format, args)); } // Error is equivalent to Log() followed by Fail(). -- cgit v1.2.3