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:
parent
5949c6debf
commit
34e5348c4a
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user