Skip to content

Commit

Permalink
Remove failing matcher
Browse files Browse the repository at this point in the history
  • Loading branch information
MantisClone committed Sep 5, 2023
1 parent 242da57 commit 6c40cf0
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,7 @@ describe('contract: ERC20FeeProxy', () => {
zeroFeeAddress,
)
.and.to.emit(testERC20, 'Transfer')
.withArgs(from, to, '100')
.and.to.not.emit(testERC20, 'Transfer')
.withArgs(from, zeroFeeAddress, '0');
.withArgs(from, to, '100');

const fromNewBalance = await testERC20.balanceOf(from);
const toNewBalance = await testERC20.balanceOf(to);
Expand Down

0 comments on commit 6c40cf0

Please sign in to comment.