1
0
mirror of https://github.com/golang/go synced 2024-11-21 14:44:40 -07:00

apply gofmt to src and misc

R=rsc
CC=golang-dev
https://golang.org/cl/213041
This commit is contained in:
Robert Griesemer 2010-02-17 15:46:46 -08:00
parent 1cf6fdf8a1
commit cd72f77f23

View File

@ -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) {