Unverified Commit b1ea59e8 by Julian M. Rodriguez Committed by GitHub

Improve testing for ERC20Snapshot (#2331)

parent 7d48d79b
...@@ -134,7 +134,7 @@ describe('ERC20Snapshot', function () { ...@@ -134,7 +134,7 @@ describe('ERC20Snapshot', function () {
context('with balance changes after the snapshot', function () { context('with balance changes after the snapshot', function () {
beforeEach(async function () { beforeEach(async function () {
await this.token.transfer(recipient, new BN('10'), { from: initialHolder }); 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')); await this.token.burn(initialHolder, new BN('20'));
}); });
......
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