Merge #7801: [qa] Remove misleading "errorString syntax"

ffff866 [qa] Remove misleading "errorString syntax" (MarcoFalke)
This commit is contained in:
Wladimir J. van der Laan 2016-04-06 14:12:21 +02:00 committed by Alexander Block
parent 738e1c51c0
commit a8aeff143b
2 changed files with 9 additions and 10 deletions

View File

@ -82,10 +82,11 @@ class ImportPrunedFundsTest(BitcoinTestFramework):
#Import with no affiliated address
try:
result1 = self.nodes[1].importprunedfunds(rawtxn1, proof1, "")
except JSONRPCException,e:
errorString = e.error['message']
except JSONRPCException as e:
assert('No addresses' in e.error['message'])
else:
assert(False)
assert('No addresses' in errorString)
balance1 = self.nodes[1].getbalance("", 0, False, True)
assert_equal(balance1, Decimal(0))
@ -119,10 +120,11 @@ class ImportPrunedFundsTest(BitcoinTestFramework):
try:
self.nodes[1].removeprunedfunds(txnid1)
except JSONRPCException,e:
errorString = e.error['message']
except JSONRPCException as e:
assert('does not exist' in e.error['message'])
else:
assert(False)
assert('does not exist' in errorString)
balance1 = Decimal(self.nodes[1].getbalance("", 0, False, True))
assert_equal(balance1, Decimal('0.075'))

View File

@ -307,10 +307,7 @@ class WalletTest (BitcoinTestFramework):
self.sync_all()
# Check that the txid and balance is found by node1
try:
self.nodes[1].gettransaction(cbTxId)
except JSONRPCException,e:
assert("Invalid or non-wallet transaction id" not in e.error['message'])
self.nodes[1].gettransaction(cbTxId)
#check if wallet or blochchain maintenance changes the balance
self.sync_all()