increase coalesce delays for test to deflake on CI

This commit is contained in:
vyzo
2023-03-29 22:13:26 +02:00
committed by Maciej Witowski
parent 9c991751fb
commit 427ff42063
+3 -3
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 {