diff options
| author | James O'Beirne <[email protected]> | 2015-10-10 22:41:19 -0700 |
|---|---|---|
| committer | James O'Beirne <[email protected]> | 2015-11-11 10:33:43 -0800 |
| commit | b5cbd396ca7214f4f944163ed314456038fdd818 (patch) | |
| tree | 840fb2890c1b703c0b5d08d19a103003ae238eb4 /qa/rpc-tests/rpcbind_test.py | |
| parent | Merge pull request #6934 (diff) | |
| download | discoin-b5cbd396ca7214f4f944163ed314456038fdd818.tar.xz discoin-b5cbd396ca7214f4f944163ed314456038fdd818.zip | |
Add basic coverage reporting for RPC tests
Thanks to @MarcoFalke @dexX7 @laanwj for review.
Diffstat (limited to 'qa/rpc-tests/rpcbind_test.py')
| -rwxr-xr-x | qa/rpc-tests/rpcbind_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/rpcbind_test.py b/qa/rpc-tests/rpcbind_test.py index 04110c283..7a9da6678 100755 --- a/qa/rpc-tests/rpcbind_test.py +++ b/qa/rpc-tests/rpcbind_test.py @@ -47,7 +47,7 @@ def run_allowip_test(tmpdir, allow_ips, rpchost, rpcport): try: # connect to node through non-loopback interface url = "http://rt:rt@%s:%d" % (rpchost, rpcport,) - node = AuthServiceProxy(url) + node = get_rpc_proxy(url, 1) node.getinfo() finally: node = None # make sure connection will be garbage collected and closed |