1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-01-10 00:29:01 +02:00

fix balancer test

This commit is contained in:
Windfarer 2019-10-12 16:44:01 +08:00
parent 5949c6debf
commit 34e5348c4a

View File

@ -137,8 +137,8 @@ func TestBalancerDone(t *testing.T) {
latency, count := picker.(*wrrPicker).subConns[0].latencySummary()
expectLatency := float64(100*time.Millisecond) / 1e5
if !(expectLatency < latency && latency < (expectLatency+100)) {
t.Fatalf("latency is less than 100ms or greter than 100ms, %f", latency)
if latency < expectLatency || latency > (expectLatency+100) {
t.Fatalf("latency is less than 100ms or greater than 110ms, %f", latency)
}
assert.Equal(t, int64(1), count)