aboutsummaryrefslogtreecommitdiff
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
commitcd72f77f23e986133f4480d0a82e1bf2350cb6de (patch)
treedd309d6f020ee6bf728f8058fb1bc9fc8e4c6dc2
parent1cf6fdf8a112059e464402d6b1031772f4701d13 (diff)
downloadgo-cd72f77f23e986133f4480d0a82e1bf2350cb6de.tar.gz
go-cd72f77f23e986133f4480d0a82e1bf2350cb6de.zip
apply gofmt to src and misc
R=rsc CC=golang-dev https://golang.org/cl/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 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) {