Reduce ping timeout during test

This commit is contained in:
TwinProduction 2021-01-12 22:19:19 -05:00
parent 04de262268
commit 855c106e9b

View File

@ -29,7 +29,7 @@ func TestGetHTTPClient(t *testing.T) {
}
func TestPing(t *testing.T) {
pingTimeout = time.Second
pingTimeout = 500 * time.Millisecond
if success, rtt := Ping("127.0.0.1"); !success {
t.Error("expected true")
if rtt == 0 {