Browse Source

Merge pull request #5 from maraoz/killable-test

Killable test fix
Arseniy Klempner 9 years ago
parent
commit
1c6f7e80b7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/Killable.js

+ 1 - 1
test/Killable.js

@@ -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);