Commit f8427843 by Francisco Giordano

fix old helpers

parent 73a34f96
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]) { ...@@ -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);
......
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 ([ ...@@ -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)
); );
}); });
......
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