From d21d35ca6f5ce82423a72ffa8f6d36db8fbb4fcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Triay?= Date: Mon, 2 Oct 2017 17:34:37 -0300 Subject: [PATCH] [TokenVesting] Fix test. --- test/TokenVesting.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/TokenVesting.js b/test/TokenVesting.js index ffe118b66..dee1001a7 100644 --- a/test/TokenVesting.js +++ b/test/TokenVesting.js @@ -71,7 +71,7 @@ contract('TokenVesting', function ([_, owner, beneficiary]) { }); 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 () {