From: Robert Griesemer Date: Wed, 17 Feb 2010 23:46:46 +0000 (-0800) Subject: apply gofmt to src and misc X-Git-Tag: weekly.2010-02-17~2 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=cd72f77f23e986133f4480d0a82e1bf2350cb6de;p=gostls13.git apply gofmt to src and misc R=rsc CC=golang-dev https://golang.org/cl/213041 --- diff --git a/src/pkg/bytes/bytes_test.go b/src/pkg/bytes/bytes_test.go index 28ec55e3a9..5a76813e99 100644 --- a/src/pkg/bytes/bytes_test.go +++ b/src/pkg/bytes/bytes_test.go @@ -170,7 +170,7 @@ var explodetests = []ExplodeTest{ } func TestExplode(t *testing.T) { - for _, tt := range (explodetests) { + for _, tt := range explodetests { a := Split(strings.Bytes(tt.s), nil, tt.n) result := arrayOfString(a) if !eq(result, tt.a) {