Skip to content

Commit

Permalink
core: fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
facuspagnuolo committed Jun 17, 2024
1 parent 84b8c29 commit 4549b08
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/relayer/test/Relayer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -997,7 +997,9 @@ describe('Relayer', () => {
const tokenAddress = ZERO_ADDRESS

it('reverts', async () => {
await expect(relayer.rescueFunds(tokenAddress, recipient.address, amount)).to.be.revertedWith('RelayerTokenZero')
await expect(relayer.rescueFunds(tokenAddress, recipient.address, amount)).to.be.revertedWith(
'RelayerTokenZero'
)
})
})
})
Expand Down

0 comments on commit 4549b08

Please sign in to comment.