aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/rpcnamedargs.py
diff options
context:
space:
mode:
Diffstat (limited to 'qa/rpc-tests/rpcnamedargs.py')
-rwxr-xr-xqa/rpc-tests/rpcnamedargs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/rpcnamedargs.py b/qa/rpc-tests/rpcnamedargs.py
index 0484204668..da2d8f040f 100755
--- a/qa/rpc-tests/rpcnamedargs.py
+++ b/qa/rpc-tests/rpcnamedargs.py
@@ -37,7 +37,7 @@ class NamedArgumentTest(BitcoinTestFramework):
h = node.help(command='getinfo')
assert(h.startswith('getinfo\n'))
- assert_raises_jsonrpc(-8, node.help, random='getinfo')
+ assert_raises_jsonrpc(-8, 'Unknown named parameter', node.help, random='getinfo')
h = node.getblockhash(height=0)
node.getblock(blockhash=h)