From af514939dbdf72ce275ef290a34c390a5e982563 Mon Sep 17 00:00:00 2001 From: Thane Thomson Date: Tue, 10 May 2022 15:20:46 -0400 Subject: [PATCH] Increase timeout for TestReactorVotingPowerChange to counter flakiness Signed-off-by: Thane Thomson --- internal/consensus/reactor_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/consensus/reactor_test.go b/internal/consensus/reactor_test.go index c6a8869db..653482212 100644 --- a/internal/consensus/reactor_test.go +++ b/internal/consensus/reactor_test.go @@ -666,7 +666,7 @@ func TestReactorRecordsVotesAndBlockParts(t *testing.T) { } func TestReactorVotingPowerChange(t *testing.T) { - ctx, cancel := context.WithTimeout(context.Background(), time.Minute) + ctx, cancel := context.WithTimeout(context.Background(), 10*time.Minute) defer cancel() cfg := configSetup(t)