diff options
Diffstat (limited to 'src/pkg/log/log_test.go')
-rw-r--r-- | src/pkg/log/log_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/log/log_test.go b/src/pkg/log/log_test.go index 0cfb2e36f..819e959ce 100644 --- a/src/pkg/log/log_test.go +++ b/src/pkg/log/log_test.go @@ -75,7 +75,7 @@ func testLog(t *testing.T, flag int, prefix string, pattern string, useLogf bool } func TestAllLog(t *testing.T) { - for i, testcase := range(tests) { + for i, testcase := range tests { testLog(t, testcase.flag, testcase.prefix, testcase.pattern, false); testLog(t, testcase.flag, testcase.prefix, testcase.pattern, true); } |