diff options
| author | MarcoFalke <[email protected]> | 2018-08-03 17:50:33 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-08-03 17:41:21 -0400 |
| commit | fafe73a626d9d935402e3d488c07cc36a57b1850 (patch) | |
| tree | 59154cbc39dfaf9961e70877c324e13d631ce2c7 /test/functional | |
| parent | qa: Use files for stdout/stderr to support Windows (diff) | |
| download | discoin-fafe73a626d9d935402e3d488c07cc36a57b1850.tar.xz discoin-fafe73a626d9d935402e3d488c07cc36a57b1850.zip | |
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 1adafc21a..ed1d25c0d 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) |