Skip to content

Commit

Permalink
Add missing multiwallet rpc calls to python coverage logs
Browse files Browse the repository at this point in the history
This fixes a bug in coverage logging that's been around since the logging was
introduced.
  • Loading branch information
ryanofsky committed Oct 4, 2017
1 parent 9f67646 commit 505530c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/functional/test_framework/coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ def __call__(self, *args, **kwargs):
return return_val

def __truediv__(self, relative_uri):
return AuthServiceProxyWrapper(self.auth_service_proxy_instance / relative_uri)
return AuthServiceProxyWrapper(self.auth_service_proxy_instance / relative_uri,
self.coverage_logfile)

def get_filename(dirname, n_node):
"""
Expand Down

0 comments on commit 505530c

Please sign in to comment.