diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-08-03 17:50:33 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-08-03 17:41:21 -0400 |
commit | fafe73a626d9d935402e3d488c07cc36a57b1850 (patch) | |
tree | 59154cbc39dfaf9961e70877c324e13d631ce2c7 /test/functional | |
parent | faabd7bc47ca8e1466abb6967a8d1ea43fd0acc3 (diff) |
qa: Raise feature_help timeout to 5s
Diffstat (limited to 'test/functional')
-rwxr-xr-x | test/functional/feature_help.py | 2 |
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) |