diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-05-27 13:10:23 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-05-27 13:11:01 +0000 |
commit | 6f5411d3059a94c6d73c1cf71d23b30fafbcd006 (patch) | |
tree | 7e94fd914711bba0202feef451223e9605a00286 /tests | |
parent | python-rpc: add missing sync_txpool python entry point (diff) | |
download | monero-6f5411d3059a94c6d73c1cf71d23b30fafbcd006.tar.xz |
tests: fix missing error on missing python entry point
Diffstat (limited to 'tests')
-rw-r--r-- | tests/functional_tests/check_missing_rpc_methods.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/functional_tests/check_missing_rpc_methods.py b/tests/functional_tests/check_missing_rpc_methods.py index 6fadebf9b..0eedd6d0f 100644 --- a/tests/functional_tests/check_missing_rpc_methods.py +++ b/tests/functional_tests/check_missing_rpc_methods.py @@ -46,5 +46,6 @@ for module in modules: name = name[1:] if not hasattr(module['object'], name): print('Error: %s API method %s does not have a matching function' % (module['name'], name)) + error = True sys.exit(1 if error else 0) |