aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlexander Blair <snipa@jagtech.io>2020-08-16 12:41:10 -0700
committerAlexander Blair <snipa@jagtech.io>2020-08-16 12:41:10 -0700
commit9eebe01c58f4a99ae350148ecc86aa8159e53b4e (patch)
tree1f635e60647f9263bda4f5afca1bffd774363c82 /tests
parentMerge pull request #6546 (diff)
parenttests: fix missing error on missing python entry point (diff)
downloadmonero-9eebe01c58f4a99ae350148ecc86aa8159e53b4e.tar.xz
Merge pull request #6593
6f5411d30 tests: fix missing error on missing python entry point (moneromooo-monero) c6dc2850c python-rpc: add missing sync_txpool python entry point (moneromooo-monero)
Diffstat (limited to 'tests')
-rw-r--r--tests/functional_tests/check_missing_rpc_methods.py1
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)