summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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) {