Skip to content

Commit

Permalink
event needs from address in transfer test (#361)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberhorsey authored Nov 30, 2022
1 parent e97132c commit 4ef4df4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/protocol/test/bridge/BridgedERC20.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ describe("BridgedERC20", function () {
.transfer(owner.address, amount)
)
.to.emit(erc20, "Transfer")
.withArgs(owner.address, amount)
.withArgs(accountWithTokens.address, owner.address, amount)

const newRecipientBalance = await erc20.balanceOf(owner.address)
const newAccountWithTokensBalance = await erc20.balanceOf(
Expand Down

0 comments on commit 4ef4df4

Please sign in to comment.