aboutsummaryrefslogtreecommitdiff
path: root/test/functional/rpc_help.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/rpc_help.py')
-rwxr-xr-xtest/functional/rpc_help.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/functional/rpc_help.py b/test/functional/rpc_help.py
index 1eefd109f8..de21f43747 100755
--- a/test/functional/rpc_help.py
+++ b/test/functional/rpc_help.py
@@ -105,10 +105,13 @@ class HelpRpcTest(BitcoinTestFramework):
if self.is_wallet_compiled():
components.append('Wallet')
+ if self.is_external_signer_compiled():
+ components.append('Signer')
+
if self.is_zmq_compiled():
components.append('Zmq')
- assert_equal(titles, components)
+ assert_equal(titles, sorted(components))
def dump_help(self):
dump_dir = os.path.join(self.options.tmpdir, 'rpc_help_dump')