aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2018-08-03 17:50:33 -0400
committerMarcoFalke <falke.marco@gmail.com>2018-08-03 17:41:21 -0400
commitfafe73a626d9d935402e3d488c07cc36a57b1850 (patch)
tree59154cbc39dfaf9961e70877c324e13d631ce2c7
parentfaabd7bc47ca8e1466abb6967a8d1ea43fd0acc3 (diff)
downloadbitcoin-fafe73a626d9d935402e3d488c07cc36a57b1850.tar.xz
qa: Raise feature_help timeout to 5s
-rwxr-xr-xtest/functional/feature_help.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/feature_help.py b/test/functional/feature_help.py
index 1adafc21a5..ed1d25c0d6 100755
--- a/test/functional/feature_help.py
+++ b/test/functional/feature_help.py
@@ -17,7 +17,7 @@ class HelpTest(BitcoinTestFramework):
# Don't start the node
def get_node_output(self, *, ret_code_expected):
- ret_code = self.nodes[0].process.wait(timeout=1)
+ ret_code = self.nodes[0].process.wait(timeout=5)
assert_equal(ret_code, ret_code_expected)
self.nodes[0].stdout.seek(0)
self.nodes[0].stderr.seek(0)