Fix: use original sequence for url-test group (#201)

This commit is contained in:
Jonathan Gao 2019-06-13 20:18:07 +08:00 committed by Dreamacro
parent 016e7bd0b4
commit cba548114f

View File

@ -5,7 +5,6 @@ import (
"encoding/json"
"errors"
"net"
"sort"
"sync"
"sync/atomic"
"time"
@ -56,7 +55,6 @@ func (u *URLTest) MarshalJSON() ([]byte, error) {
for _, proxy := range u.proxies {
all = append(all, proxy.Name())
}
sort.Strings(all)
return json.Marshal(map[string]interface{}{
"type": u.Type().String(),
"now": u.Now(),