aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/path
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2011-09-06 16:04:55 -0700
committerRobert Griesemer <gri@golang.org>2011-09-06 16:04:55 -0700
commit61650b21d6a40970441b304c5f1d1cea4ff3ef59 (patch)
tree6cfdf2158da0454414317a3717b0afbc2c2afd7a /src/pkg/path
parent62b10ad0ba0302c726ecc0795548d7f58aeeb9ca (diff)
downloadgo-61650b21d6a40970441b304c5f1d1cea4ff3ef59.tar.xz
cleanup: gofmt -s -w src misc
R=r CC=golang-dev https://golang.org/cl/4984052
Diffstat (limited to 'src/pkg/path')
-rw-r--r--src/pkg/path/filepath/path_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/path/filepath/path_test.go b/src/pkg/path/filepath/path_test.go
index d2a10698e1..395b12775a 100644
--- a/src/pkg/path/filepath/path_test.go
+++ b/src/pkg/path/filepath/path_test.go
@@ -81,7 +81,7 @@ var wincleantests = []PathTest{
func TestClean(t *testing.T) {
tests := cleantests
if runtime.GOOS == "windows" {
- for i, _ := range tests {
+ for i := range tests {
tests[i].result = filepath.FromSlash(tests[i].result)
}
tests = append(tests, wincleantests...)