diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-09-30 12:12:39 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-09-30 12:12:59 -0400 |
commit | 696b5eb1799d9ac7d6dd72134ac30df87e9df222 (patch) | |
tree | 1825d8ed6674d0cac9fc0d7ed7650391deef59d6 /test | |
parent | c3a8e097b1afe27bce2f71817fd23cb857236d9d (diff) | |
parent | e28d8f893656a5b60dd9c0ec11a88611a56d2ab4 (diff) |
Merge #16987: test: Correct docstring param name.
e28d8f893656a5b60dd9c0ec11a88611a56d2ab4 Correct docstring param name. (John Bampton)
Pull request description:
Small fix to correct the Python docstring.
ACKs for top commit:
laanwj:
ACK e28d8f893656a5b60dd9c0ec11a88611a56d2ab4
MarcoFalke:
ACK e28d8f8
Tree-SHA512: 7bec1c6b166c768dd69fc6b94eb80ceeaa0258985b9a11956e336940d403785e7d09d0084d9b870b637ec784db044cf4c0f8ac3f0fcdf431090f003016ef13a9
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/rpc_net.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/rpc_net.py b/test/functional/rpc_net.py index b2017bc18e..615f9abbe0 100755 --- a/test/functional/rpc_net.py +++ b/test/functional/rpc_net.py @@ -33,7 +33,7 @@ def assert_net_servicesnames(servicesflag, servicenames): `getpeerinfo` and `getnetworkinfo`. :param servicesflag: The services as an integer. - :param servicesnames: The list of decoded services names, as strings. + :param servicenames: The list of decoded services names, as strings. """ servicesflag_generated = 0 for servicename in servicenames: |