increase coalesce delays for test to deflake on CI

This commit is contained in:
vyzo 2023-03-13 17:27:12 +02:00
parent 6deec4c5f4
commit 5ade40cbac

View File

@ -200,9 +200,9 @@ func init() {
rng = rand.New(rand.NewSource(314159))
// adjust those to make tests snappy
CoalesceMinDelay = time.Millisecond
CoalesceMaxDelay = 10 * time.Millisecond
CoalesceMergeInterval = time.Millisecond
CoalesceMinDelay = 100 * time.Millisecond
CoalesceMaxDelay = time.Second
CoalesceMergeInterval = 100 * time.Millisecond
}
func newMockChainStore() *mockChainStore {