diff options
| author | MarcoFalke <[email protected]> | 2016-04-26 18:11:42 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-04-26 18:04:26 +0200 |
| commit | fada064f67302502f6b51d9d22927381c2707cbb (patch) | |
| tree | 7020bf9e43b6f51e6f97d1fe47d710a91f1680e9 | |
| parent | [qa] mininode: Unfiddle strings into bytes (diff) | |
| download | discoin-fada064f67302502f6b51d9d22927381c2707cbb.tar.xz discoin-fada064f67302502f6b51d9d22927381c2707cbb.zip | |
[qa] test_framework: Properly print exceptions and assert empty dict
| -rwxr-xr-x | qa/rpc-tests/test_framework/test_framework.py | 2 | ||||
| -rw-r--r-- | qa/rpc-tests/test_framework/util.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/qa/rpc-tests/test_framework/test_framework.py b/qa/rpc-tests/test_framework/test_framework.py index 3b08cd138..18ecf64b0 100755 --- a/qa/rpc-tests/test_framework/test_framework.py +++ b/qa/rpc-tests/test_framework/test_framework.py @@ -146,7 +146,7 @@ class BitcoinTestFramework(object): print("key not found: "+ str(e)) traceback.print_tb(sys.exc_info()[2]) except Exception as e: - print("Unexpected exception caught during testing: "+str(e)) + print("Unexpected exception caught during testing: " + repr(e)) traceback.print_tb(sys.exc_info()[2]) if not self.options.noshutdown: diff --git a/qa/rpc-tests/test_framework/util.py b/qa/rpc-tests/test_framework/util.py index 27891f7f4..baa1ed679 100644 --- a/qa/rpc-tests/test_framework/util.py +++ b/qa/rpc-tests/test_framework/util.py @@ -487,7 +487,7 @@ def assert_array_result(object_array, to_match, expected, should_not_find = Fals in object_array """ if should_not_find == True: - expected = { } + assert_equal(expected, { }) num_matched = 0 for item in object_array: all_match = True |