Skip to content

Commit

Permalink
Fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
b-gopalswami committed Nov 18, 2024
1 parent 3f6d5ae commit 0712e66
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions integration-tests/smoke/ccip_usdc_test.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
package smoke

import (
"github.com/stretchr/testify/assert"
"math/big"
"net/http"
"net/http/httptest"
"testing"
"time"

"github.com/stretchr/testify/assert"

"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common"
"github.com/stretchr/testify/require"
Expand Down Expand Up @@ -195,7 +196,7 @@ func TestUSDCTokenTransfer(t *testing.T) {

for _, token := range tt.tokens {
destToken := srcDstTokenMapping[token.Token]

assert.Eventually(t, func() bool {
balance, err := destToken.BalanceOf(&bind.CallOpts{Context: tests.Context(t)}, tt.receiver)
require.NoError(t, err)
Expand Down

0 comments on commit 0712e66

Please sign in to comment.