diff --git a/integration-tests/smoke/ccip_test.go b/integration-tests/smoke/ccip_test.go index be0e37e981e..eb2f59a9eb1 100644 --- a/integration-tests/smoke/ccip_test.go +++ b/integration-tests/smoke/ccip_test.go @@ -308,10 +308,10 @@ func TestTokenTransfer(t *testing.T) { dstToken = dstToken2 } } else if scenario.srcChain == tenv.FeedChainSel && scenario.dstChain == tenv.HomeChainSel { - if tokenAmount.Token == dstToken1.Address() { - dstToken = srcToken1 - } else if tokenAmount.Token == dstToken2.Address() { - dstToken = srcToken2 + if tokenAmount.Token == srcToken1.Address() { + dstToken = dstToken1 + } else if tokenAmount.Token == srcToken2.Address() { + dstToken = dstToken2 } } require.NotNil(t, dstToken, "Destination token not found") @@ -320,7 +320,7 @@ func TestTokenTransfer(t *testing.T) { require.NoError(t, err) expectedBalance := tokenAmount.Amount - if scenario.name == "Send N tokens to contract" && tokenAmount.Token == dstToken1.Address() { + if scenario.name == "Send N tokens to contract" && tokenAmount.Token == srcToken1.Address() { expectedBalance = new(big.Int).Add(big.NewInt(1e18), big.NewInt(3e18)) }