We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fe7d52 commit b2410aeCopy full SHA for b2410ae
test/functional/test_framework/test_node.py
@@ -223,7 +223,7 @@ def assert_debug_log(self, expected_msgs):
223
print_log = " - " + "\n - ".join(log.splitlines())
224
for expected_msg in expected_msgs:
225
if re.search(re.escape(expected_msg), log, flags=re.MULTILINE) is None:
226
- self._raise_assertion_error('Expected message "{}" does not partially match log:\n\n{}\n\n'.format(expected_msg, print_log))
+ raise AssertionError('Expected message "{}" does not partially match log:\n\n{}\n\n'.format(expected_msg, print_log))
227
228
def node_encrypt_wallet(self, passphrase):
229
""""Encrypts the wallet.
0 commit comments