From 4e39f50aeca68aa3e602f68f511897f5bd9dab1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Triay?= Date: Mon, 2 Oct 2017 17:31:42 -0300 Subject: [PATCH] [TokenVesting] Remove unnecessary instatiation on test. --- test/TokenVesting.js | 1 - 1 file changed, 1 deletion(-) diff --git a/test/TokenVesting.js b/test/TokenVesting.js index 78c9496e6..ffe118b66 100644 --- a/test/TokenVesting.js +++ b/test/TokenVesting.js @@ -71,7 +71,6 @@ contract('TokenVesting', function ([_, owner, beneficiary]) { }); it('should be revoked by owner if revocable is set', async function () { - const vesting = await TokenVesting.new(beneficiary, this.start, this.cliff, this.duration, true, { from: owner } ); await vesting.revoke(this.token.address, { from: owner }).should.be.fulfilled; });