From 6c40cf0c59941355cb82291a2a45be9ad12f7541 Mon Sep 17 00:00:00 2001 From: MantisClone Date: Tue, 5 Sep 2023 15:06:34 -0400 Subject: [PATCH] Remove failing matcher --- packages/smart-contracts/test/contracts/ERC20FeeProxy.test.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/smart-contracts/test/contracts/ERC20FeeProxy.test.ts b/packages/smart-contracts/test/contracts/ERC20FeeProxy.test.ts index c68893980f..04dd30f17f 100644 --- a/packages/smart-contracts/test/contracts/ERC20FeeProxy.test.ts +++ b/packages/smart-contracts/test/contracts/ERC20FeeProxy.test.ts @@ -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);