diff options
| author | Jon Atack <[email protected]> | 2020-06-01 10:35:07 +0200 |
|---|---|---|
| committer | Jon Atack <[email protected]> | 2020-06-02 08:50:57 +0200 |
| commit | 22cb303cf099b430d602384bc92706ce01b4f98d (patch) | |
| tree | 33b99a95803fc11cfd652f24bcd85136b8bc169f /test/functional/interface_bitcoin_cli.py | |
| parent | test: add multiwallet tests for bitcoin-cli -generate (diff) | |
| download | discoin-22cb303cf099b430d602384bc92706ce01b4f98d.tar.xz discoin-22cb303cf099b430d602384bc92706ce01b4f98d.zip | |
rpc: add missing space in JSON parsing error message, update test
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 a7b54ba71..80003aca0 100755 --- a/test/functional/interface_bitcoin_cli.py +++ b/test/functional/interface_bitcoin_cli.py @@ -19,7 +19,7 @@ from test_framework.util import ( BLOCKS = 101 BALANCE = (BLOCKS - 100) * 50 -JSON_PARSING_ERROR = 'error: Error parsing JSON:foo' +JSON_PARSING_ERROR = 'error: Error parsing JSON: foo' BLOCKS_VALUE_OF_ZERO = 'error: the first argument (number of blocks to generate, default: 1) must be an integer value greater than zero' TOO_MANY_ARGS = 'error: too many arguments (maximum 2 for nblocks and maxtries)' WALLET_NOT_LOADED = 'Requested wallet does not exist or is not loaded' |