fix old helpers

This commit is contained in:
Francisco Giordano
2019-01-18 17:52:23 -03:00
parent 73a34f96a7
commit f84278433d
2 changed files with 6 additions and 5 deletions

View File

@ -1,5 +1,6 @@
const { EVMRevert } = require('../helpers/EVMRevert'); const { shouldFail } = require('../helpers/shouldFail');
const { expectThrow } = require('../helpers/expectThrow');
require('../helpers/setup');
const { shouldBehaveLikeOwnable } = require('./Ownable.behavior'); const { shouldBehaveLikeOwnable } = require('./Ownable.behavior');
@ -11,7 +12,7 @@ contract('Ownable', function ([_, owner, anyone, ...otherAccounts]) {
}); });
it('cannot be reinitialized', async function () { it('cannot be reinitialized', async function () {
await expectThrow(this.ownable.initialize(anyone), EVMRevert); await shouldFail.reverting(this.ownable.initialize(anyone));
}); });
shouldBehaveLikeOwnable(owner, otherAccounts); shouldBehaveLikeOwnable(owner, otherAccounts);

View File

@ -1,6 +1,6 @@
const encodeCall = require('zos-lib/lib/helpers/encodeCall').default; const encodeCall = require('zos-lib/lib/helpers/encodeCall').default;
const { shouldBehaveLikeERC20Mintable } = require('./behaviors/ERC20Mintable.behavior'); const { shouldBehaveLikeERC20Mintable } = require('./behaviors/ERC20Mintable.behavior');
const { assertRevert } = require('../../helpers/assertRevert'); const { shouldFail } = require('../../helpers/shouldFail');
const BigNumber = web3.BigNumber; const BigNumber = web3.BigNumber;
@ -44,7 +44,7 @@ contract('StandaloneERC20', function ([
describe('with all arguments', function () { describe('with all arguments', function () {
it('reverts if initial balance is zero', async function () { it('reverts if initial balance is zero', async function () {
await assertRevert( await shouldFail.reverting(
initializeFull(this.token, name, symbol, decimals, 0, ZERO_ADDRESS, minters, pausers, deployer) initializeFull(this.token, name, symbol, decimals, 0, ZERO_ADDRESS, minters, pausers, deployer)
); );
}); });