mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
[tests] do not allow assert_raises_message to be called with JSONRPCException
This commit is contained in:
parent
5864e9c161
commit
677d893ff7
@ -51,6 +51,8 @@ def assert_raises(exc, fun, *args, **kwds):
|
|||||||
def assert_raises_message(exc, message, fun, *args, **kwds):
|
def assert_raises_message(exc, message, fun, *args, **kwds):
|
||||||
try:
|
try:
|
||||||
fun(*args, **kwds)
|
fun(*args, **kwds)
|
||||||
|
except JSONRPCException:
|
||||||
|
raise AssertionError("Use assert_raises_jsonrpc() to test RPC failures")
|
||||||
except exc as e:
|
except exc as e:
|
||||||
if message is not None and message not in e.error['message']:
|
if message is not None and message not in e.error['message']:
|
||||||
raise AssertionError("Expected substring not found:" + e.error['message'])
|
raise AssertionError("Expected substring not found:" + e.error['message'])
|
||||||
|
Loading…
Reference in New Issue
Block a user