diff --git a/test/functional/test_framework/test_node.py b/test/functional/test_framework/test_node.py index 266077c6e..f5e86e4f4 100755 --- a/test/functional/test_framework/test_node.py +++ b/test/functional/test_framework/test_node.py @@ -51,7 +51,7 @@ class TestNode(): self.extra_args = extra_args self.args = [self.binary, "-datadir=" + self.datadir, "-server", "-keypool=1", "-discover=0", "-rest", "-logtimemicros", "-debug", "-debugexclude=libevent", "-debugexclude=leveldb", "-mocktime=" + str(mocktime), "-uacomment=testnode%d" % i] - self.cli = TestNodeCLI(os.getenv("BITCOINCLI", "bitcoin-cli"), self.datadir) + self.cli = TestNodeCLI(os.getenv("BITCOINCLI", "dash-cli"), self.datadir) # Don't try auto backups (they fail a lot when running tests) self.args.append("-createwalletbackups=0") diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index 0b7869dca..f0d34f405 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -295,7 +295,7 @@ def run_tests(test_list, src_dir, build_dir, exeext, tmpdir, jobs=1, enable_cove #Set env vars if "BITCOIND" not in os.environ: os.environ["BITCOIND"] = build_dir + '/src/dashd' + exeext - os.environ["BITCOINCLI"] = build_dir + '/src/bitcoin-cli' + exeext + os.environ["BITCOINCLI"] = build_dir + '/src/dash-cli' + exeext tests_dir = src_dir + '/test/functional/'