diff options
author | Robert Griesemer <gri@golang.org> | 2010-02-17 15:46:46 -0800 |
---|---|---|
committer | Robert Griesemer <gri@golang.org> | 2010-02-17 15:46:46 -0800 |
commit | 180abc909e44ab0ad85b5925d49ef706817aa21b (patch) | |
tree | 7a6ba3c07d5b44e92fee34ac7305bf6ba6824e1b | |
parent | 5d19a99d68008cc5bf786a194b320682c3c0d27e (diff) | |
download | golang-180abc909e44ab0ad85b5925d49ef706817aa21b.tar.gz |
apply gofmt to src and misc
R=rsc
CC=golang-dev
http://codereview.appspot.com/213041
-rw-r--r-- | src/pkg/bytes/bytes_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/bytes/bytes_test.go b/src/pkg/bytes/bytes_test.go index 28ec55e3a..5a76813e9 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) { |