summaryrefslogtreecommitdiff
path: root/src/pkg/log/log_test.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-06-24 20:12:50 -0700
committerRuss Cox <rsc@golang.org>2009-06-24 20:12:50 -0700
commitdfafe9a353bd1d4dcbbde691b9c8cda2533f47a3 (patch)
treeedbec55b247a7a6543d84b4574fb88326833b3e1 /src/pkg/log/log_test.go
parente3fe6186634f9b74b9f39924516e24b068b9e141 (diff)
downloadgolang-dfafe9a353bd1d4dcbbde691b9c8cda2533f47a3.tar.gz
style police: parens in if, for, switch, range
R=r DELTA=32 (0 added, 3 deleted, 29 changed) OCL=30718 CL=30725
Diffstat (limited to 'src/pkg/log/log_test.go')
-rw-r--r--src/pkg/log/log_test.go2
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);
}