From b1ea59e8147ea084d395ee15d66691d1eff52ecb Mon Sep 17 00:00:00 2001 From: "Julian M. Rodriguez" <56316686+julianmrodri@users.noreply.github.com> Date: Tue, 18 Aug 2020 20:40:51 -0300 Subject: [PATCH] Improve testing for ERC20Snapshot (#2331) --- test/token/ERC20/ERC20Snapshot.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/token/ERC20/ERC20Snapshot.test.js b/test/token/ERC20/ERC20Snapshot.test.js index c8aac9f7f..a00738193 100644 --- a/test/token/ERC20/ERC20Snapshot.test.js +++ b/test/token/ERC20/ERC20Snapshot.test.js @@ -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')); });