summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2010-02-17 15:46:46 -0800
committerRobert Griesemer <gri@golang.org>2010-02-17 15:46:46 -0800
commit8ab3345a008aa04be5f72eb8d9e21d746c072169 (patch)
tree7a6ba3c07d5b44e92fee34ac7305bf6ba6824e1b
parent55c108f82a613035629542c88618acec760db143 (diff)
downloadgo-8ab3345a008aa04be5f72eb8d9e21d746c072169.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.go2
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) {