Improve testing for ERC20Snapshot (#2331)

This commit is contained in:
Julian M. Rodriguez
2020-08-18 20:40:51 -03:00
committed by GitHub
parent 7d48d79b53
commit b1ea59e814

View File

@ -134,7 +134,7 @@ describe('ERC20Snapshot', function () {
context('with balance changes after the snapshot', function () {
beforeEach(async function () {
await this.token.transfer(recipient, new BN('10'), { from: initialHolder });
await this.token.mint(recipient, new BN('50'));
await this.token.mint(other, new BN('50'));
await this.token.burn(initialHolder, new BN('20'));
});