Skip to content

Commit

Permalink
Update e2e/evm/test/basic_queries.test.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Unique-Divine authored May 31, 2024
1 parent c7e25eb commit 6a2524e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion e2e/evm/test/basic_queries.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ describe('Basic Queries', () => {
const senderBalanceAfter = await provider.getBalance(account.address)
const recipientBalanceAfter = await provider.getBalance(randomAddress)

// TODO: gas is not deducted regardless the gas limit, check this
// TODO: https://github.com/NibiruChain/nibiru/issues/1902
// gas is not deducted regardless the gas limit, check this
const expectedSenderBalance = senderBalanceBefore - amountToSend
expect(senderBalanceAfter).toBeLessThanOrEqual(expectedSenderBalance)
expect(recipientBalanceAfter).toEqual(amountToSend)
Expand Down

0 comments on commit 6a2524e

Please sign in to comment.