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 85c807c commit d12760bCopy full SHA for d12760b
qa/rpc-tests/test_framework/test_framework.py
@@ -142,6 +142,9 @@ def main(self):
142
except AssertionError as e:
143
print("Assertion failed: "+ str(e))
144
traceback.print_tb(sys.exc_info()[2])
145
+ except KeyError as e:
146
+ print("key not found: "+ str(e))
147
+ traceback.print_tb(sys.exc_info()[2])
148
except Exception as e:
149
print("Unexpected exception caught during testing: "+str(e))
150
0 commit comments