From c35261150c296352e829cb5a5f44de47596ce298 Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Wed, 23 Nov 2016 19:33:49 -0800 Subject: [PATCH] fix Killable test --- test/Killable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Killable.js b/test/Killable.js index a79030caa..13b695324 100644 --- a/test/Killable.js +++ b/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);