Commit 1c6f7e80 by Arseniy Klempner Committed by GitHub

Merge pull request #5 from maraoz/killable-test

Killable test fix
parents af388658 c3526115
...@@ -52,7 +52,7 @@ contract('Killable', function(accounts) { ...@@ -52,7 +52,7 @@ contract('Killable', function(accounts) {
kBalance = web3.eth.getBalance(killable.address); kBalance = web3.eth.getBalance(killable.address);
}) })
.then(function() { .then(function() {
return killable.kill.call({from: owner}); return killable.kill({from: owner});
}) })
.then(function (txnHash) { .then(function (txnHash) {
return web3.eth.getTransactionReceiptMined(txnHash); return web3.eth.getTransactionReceiptMined(txnHash);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment