Commit d21d35ca by Martín Triay

[TokenVesting] Fix test.

parent 4e39f50a
...@@ -71,7 +71,7 @@ contract('TokenVesting', function ([_, owner, beneficiary]) { ...@@ -71,7 +71,7 @@ contract('TokenVesting', function ([_, owner, beneficiary]) {
}); });
it('should be revoked by owner if revocable is set', async function () { it('should be revoked by owner if revocable is set', async function () {
await vesting.revoke(this.token.address, { from: owner }).should.be.fulfilled; await this.vesting.revoke(this.token.address, { from: owner }).should.be.fulfilled;
}); });
it('should fail to be revoked by owner if revocable not set', async function () { it('should fail to be revoked by owner if revocable not set', async function () {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment