Skip to content

Commit

Permalink
Merge #12918: test: Assert on correct variable
Browse files Browse the repository at this point in the history
bf08fc5 test: Assert on correct variable (Karl-Johan Alm)

Pull request description:

Tree-SHA512: bdc4a0f94d49ab29234ee429585c6c73e46ff096c46d6053eb15c0a84cdea5490425cd842d051d41e158450945b229239b08002c193fdcc212eb2ca0e63aa653
  • Loading branch information
MarcoFalke committed Apr 9, 2018
2 parents 4781813 + bf08fc5 commit 6fc5a05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/rpc_rawtransaction.py
Expand Up @@ -289,7 +289,7 @@ def run_test(self):
rawTx2 = self.nodes[2].createrawtransaction(inputs, outputs)
rawTxPartialSigned1 = self.nodes[1].signrawtransactionwithwallet(rawTx2, inputs)
self.log.debug(rawTxPartialSigned1)
assert_equal(rawTxPartialSigned['complete'], False) #node1 only has one key, can't comp. sign the tx
assert_equal(rawTxPartialSigned1['complete'], False) #node1 only has one key, can't comp. sign the tx

rawTxPartialSigned2 = self.nodes[2].signrawtransactionwithwallet(rawTx2, inputs)
self.log.debug(rawTxPartialSigned2)
Expand Down

0 comments on commit 6fc5a05

Please sign in to comment.