]> Cypherpunks repositories - gostls13.git/commitdiff
apply gofmt to src and misc
authorRobert Griesemer <gri@golang.org>
Wed, 17 Feb 2010 23:46:46 +0000 (15:46 -0800)
committerRobert Griesemer <gri@golang.org>
Wed, 17 Feb 2010 23:46:46 +0000 (15:46 -0800)
R=rsc
CC=golang-dev
https://golang.org/cl/213041

src/pkg/bytes/bytes_test.go

index 28ec55e3a9c84db4c0d489486eaad58dac02a05a..5a76813e99b5f9014a225faa2fc83507ba05b7d5 100644 (file)
@@ -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) {