aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework/test_framework.py
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2019-12-06 13:22:04 +0000
committerpracticalswift <practicalswift@users.noreply.github.com>2019-12-06 15:24:06 +0000
commit5ac804a9eb0cdbdcff8b50ecfb736f8793cab805 (patch)
treee6a609766a3d805b7ef1772b406faebf22269bf4 /test/functional/test_framework/test_framework.py
parent993e38a4e2fa66093314b988dfbe459f46aa5864 (diff)
downloadbitcoin-5ac804a9eb0cdbdcff8b50ecfb736f8793cab805.tar.xz
tests: Use a default of supports_cli=True (instead of supports_cli=False)
Diffstat (limited to 'test/functional/test_framework/test_framework.py')
-rwxr-xr-xtest/functional/test_framework/test_framework.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_framework/test_framework.py b/test/functional/test_framework/test_framework.py
index f468f9eaec..a17e7709f2 100755
--- a/test/functional/test_framework/test_framework.py
+++ b/test/functional/test_framework/test_framework.py
@@ -97,7 +97,7 @@ class BitcoinTestFramework(metaclass=BitcoinTestMetaClass):
self.nodes = []
self.network_thread = None
self.rpc_timeout = 60 # Wait for up to 60 seconds for the RPC server to respond
- self.supports_cli = False
+ self.supports_cli = True
self.bind_to_localhost_only = True
self.set_test_params()
self.parse_args()