aboutsummaryrefslogtreecommitdiff
path: root/test/functional/feature_help.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/feature_help.py')
-rwxr-xr-xtest/functional/feature_help.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/functional/feature_help.py b/test/functional/feature_help.py
index 1e62d7a409..fd4a72f628 100755
--- a/test/functional/feature_help.py
+++ b/test/functional/feature_help.py
@@ -36,7 +36,11 @@ class HelpTest(BitcoinTestFramework):
output = self.nodes[0].process.stdout.read()
assert b'version' in output
self.log.info("Version text received: {} (...)".format(output[0:60]))
+ # Clean up TestNode state
self.nodes[0].running = False
+ self.nodes[0].process = None
+ self.nodes[0].rpc_connected = False
+ self.nodes[0].rpc = None
if __name__ == '__main__':
HelpTest().main()