Skip to content

Commit

Permalink
fix gnosis tests
Browse files Browse the repository at this point in the history
  • Loading branch information
0xNe0x1 committed Sep 13, 2024
1 parent b4201cc commit 3ca1c0a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/_pay-with-token.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export default ({ blockchain, token, fromAccount, reversalReason })=>{
expect(feeReceiverBalanceAfter).to.eq(feeReceiverBalanceBefore.add(feeAmount))
})

it('fails if balaneIn is less after payment', async()=>{
it('fails if balanceIn is less after payment', async()=>{
const amountIn = 1000000000
const paymentAmount = 1000000000
const feeAmount = 100000000
Expand Down
2 changes: 1 addition & 1 deletion test/gnosis/pay_with_permit2.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import payWithPermit2 from '../_pay-with-permit2'
payWithPermit2({
blockchain: 'gnosis',
token: '0x4ECaBa5870353805a9F068101A40E0f32ed605C6', // USDT
tokenHolder: '0x5bb83e95f63217cda6ae3d181ba580ef377d2109',
tokenHolder: '0xBA12222222228d8Ba445958a75a0704d566BF2C8',
})
2 changes: 1 addition & 1 deletion test/gnosis/pay_with_token.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import payWithToken from '../_pay-with-token'
payWithToken({
blockchain: 'gnosis',
token: '0x4ECaBa5870353805a9F068101A40E0f32ed605C6', // USDT
fromAccount: '0x5bb83e95f63217cda6ae3d181ba580ef377d2109',
fromAccount: '0xBA12222222228d8Ba445958a75a0704d566BF2C8',
reversalReason: 'SafeERC20: low-level call failed',
})

0 comments on commit 3ca1c0a

Please sign in to comment.