Browse Source

[TokenVesting] Remove unnecessary instatiation on test.

Martín Triay 8 years ago
parent
commit
4e39f50aec
1 changed files with 0 additions and 1 deletions
  1. 0 1
      test/TokenVesting.js

+ 0 - 1
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;
   });