src/pkg/bytes/bytes_test.go | 2 +- diff --git a/src/pkg/bytes/bytes_test.go b/src/pkg/bytes/bytes_test.go index 28ec55e3a9c84db4c0d489486eaad58dac02a05a..5a76813e99b5f9014a225faa2fc83507ba05b7d5 100644 --- a/src/pkg/bytes/bytes_test.go +++ b/src/pkg/bytes/bytes_test.go @@ -170,7 +170,7 @@ ExplodeTest{abcd, 2, []string{"a", "bcd"}}, } 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) {