diff options
| author | Luke Dashjr <[email protected]> | 2019-04-25 09:11:12 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2019-04-25 20:43:04 +0000 |
| commit | fcc443b6367b44d5fdc04db36ec4a286d5b59162 (patch) | |
| tree | 0b8dc5faea74a8bb2801c6bae7a89a1613eae4f9 /test/functional/interface_bitcoin_cli.py | |
| parent | Merge #14039: Disallow extended encoding for non-witness transactions (diff) | |
| download | discoin-fcc443b6367b44d5fdc04db36ec4a286d5b59162.tar.xz discoin-fcc443b6367b44d5fdc04db36ec4a286d5b59162.zip | |
QA: feature_filelock, interface_bitcoin_cli: Use PACKAGE_NAME in messages rather than hardcoding Bitcoin Core
Diffstat (limited to 'test/functional/interface_bitcoin_cli.py')
| -rwxr-xr-x | test/functional/interface_bitcoin_cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/interface_bitcoin_cli.py b/test/functional/interface_bitcoin_cli.py index 15b7ba9ae..7bb7044cc 100755 --- a/test/functional/interface_bitcoin_cli.py +++ b/test/functional/interface_bitcoin_cli.py @@ -16,7 +16,7 @@ class TestBitcoinCli(BitcoinTestFramework): """Main test logic""" cli_response = self.nodes[0].cli("-version").send_cli() - assert "Bitcoin Core RPC client version" in cli_response + assert "{} RPC client version".format(self.config['environment']['PACKAGE_NAME']) in cli_response self.log.info("Compare responses from getwalletinfo RPC and `bitcoin-cli getwalletinfo`") if self.is_wallet_compiled(): |