mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 10:50:44 +00:00
metrics: fix flaky test TestExpDecaySampleNanosecondRegression (#29832)
This commit is contained in:
parent
a9cbcde778
commit
fb6a268763
1 changed files with 3 additions and 3 deletions
|
|
@ -125,12 +125,12 @@ func TestExpDecaySample(t *testing.T) {
|
||||||
// The priority becomes +Inf quickly after starting if this is done,
|
// The priority becomes +Inf quickly after starting if this is done,
|
||||||
// effectively freezing the set of samples until a rescale step happens.
|
// effectively freezing the set of samples until a rescale step happens.
|
||||||
func TestExpDecaySampleNanosecondRegression(t *testing.T) {
|
func TestExpDecaySampleNanosecondRegression(t *testing.T) {
|
||||||
sw := NewExpDecaySample(100, 0.99)
|
sw := NewExpDecaySample(1000, 0.99)
|
||||||
for i := 0; i < 100; i++ {
|
for i := 0; i < 1000; i++ {
|
||||||
sw.Update(10)
|
sw.Update(10)
|
||||||
}
|
}
|
||||||
time.Sleep(1 * time.Millisecond)
|
time.Sleep(1 * time.Millisecond)
|
||||||
for i := 0; i < 100; i++ {
|
for i := 0; i < 1000; i++ {
|
||||||
sw.Update(20)
|
sw.Update(20)
|
||||||
}
|
}
|
||||||
s := sw.Snapshot()
|
s := sw.Snapshot()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue