Browse Source

fix Killable test

Manuel Araoz 9 years ago
parent
commit
c35261150c
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);
       })
       .then(function() {
-        return killable.kill.call({from: owner});
+        return killable.kill({from: owner});
       })
       .then(function (txnHash) {
         return web3.eth.getTransactionReceiptMined(txnHash);