From c3d585827f8bffe1a75b6a6a4696643e6dc9ce1d Mon Sep 17 00:00:00 2001 From: Konstantin Akimov Date: Wed, 14 Aug 2024 15:01:24 +0700 Subject: [PATCH] fix: intermittent failure in feature_governance_cl by bumping timeout --- test/functional/feature_governance_cl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/feature_governance_cl.py b/test/functional/feature_governance_cl.py index 2e1f9c31e0..1076970976 100755 --- a/test/functional/feature_governance_cl.py +++ b/test/functional/feature_governance_cl.py @@ -123,7 +123,7 @@ class DashGovernanceTest (DashTestFramework): self.log.info("Wait for new trigger and votes on non-isolated nodes") sb_block_height = self.nodes[0].getblockcount() + 1 - self.wait_until(lambda: self.have_trigger_for_height(sb_block_height, self.nodes[0:5]), timeout=5) + self.wait_until(lambda: self.have_trigger_for_height(sb_block_height, self.nodes[0:5])) # Mine superblock self.nodes[0].generate(1) self.bump_mocktime(156)