[tests] fix TestNode.__getattr__() method

This commit is contained in:
John Newbery 2017-10-20 09:27:55 -04:00
parent 77546a3182
commit b86c1cd208

View file

@ -63,10 +63,10 @@ class TestNode():
self.url = None
self.log = logging.getLogger('TestFramework.node%d' % i)
def __getattr__(self, *args, **kwargs):
def __getattr__(self, name):
"""Dispatches any unrecognised messages to the RPC connection."""
assert self.rpc_connected and self.rpc is not None, "Error: no RPC connection"
return self.rpc.__getattr__(*args, **kwargs)
return getattr(self.rpc, name)
def start(self, extra_args=None, stderr=None):
"""Start the node."""