Skip to content

Commit f76d53d

Browse files
committed
Dashify a few strings in tests
1 parent b93785d commit f76d53d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/functional/bitcoin_cli.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (c) 2017 The Bitcoin Core developers
33
# Distributed under the MIT software license, see the accompanying
44
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
5-
"""Test bitcoin-cli"""
5+
"""Test dash-cli"""
66
from test_framework.test_framework import BitcoinTestFramework
77
from test_framework.util import assert_equal
88

@@ -15,13 +15,13 @@ def set_test_params(self):
1515
def run_test(self):
1616
"""Main test logic"""
1717

18-
self.log.info("Compare responses from gewalletinfo RPC and `bitcoin-cli getwalletinfo`")
18+
self.log.info("Compare responses from gewalletinfo RPC and `dash-cli getwalletinfo`")
1919
cli_get_info = self.nodes[0].cli.getwalletinfo()
2020
rpc_get_info = self.nodes[0].getwalletinfo()
2121

2222
assert_equal(cli_get_info, rpc_get_info)
2323

24-
self.log.info("Compare responses from getblockchaininfo RPC and `bitcoin-cli getblockchaininfo`")
24+
self.log.info("Compare responses from getblockchaininfo RPC and `dash-cli getblockchaininfo`")
2525
cli_get_info = self.nodes[0].cli.getblockchaininfo()
2626
rpc_get_info = self.nodes[0].getblockchaininfo()
2727

test/functional/test_framework/test_framework.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ def add_nodes(self, num_nodes, extra_args=None, rpchost=None, timewait=None, bin
246246
self.nodes.append(TestNode(old_num_nodes + i, self.options.tmpdir, extra_args[i], rpchost, timewait=timewait, binary=binary[i], stderr=stderr, mocktime=self.mocktime, coverage_dir=self.options.coveragedir))
247247

248248
def start_node(self, i, extra_args=None, stderr=None):
249-
"""Start a bitcoind"""
249+
"""Start a dashd"""
250250

251251
node = self.nodes[i]
252252

0 commit comments

Comments
 (0)