diff --git a/integration-tests/smoke/ccip/ccip_usdc_test.go b/integration-tests/smoke/ccip/ccip_usdc_test.go index 0a98ca81457..18969543ae9 100644 --- a/integration-tests/smoke/ccip/ccip_usdc_test.go +++ b/integration-tests/smoke/ccip/ccip_usdc_test.go @@ -10,8 +10,6 @@ import ( "github.com/stretchr/testify/require" "golang.org/x/sync/errgroup" - "golang.org/x/exp/maps" - "github.com/smartcontractkit/chainlink-common/pkg/utils/tests" "github.com/smartcontractkit/chainlink-testing-framework/lib/utils/testcontext" @@ -45,7 +43,7 @@ func TestUSDCTokenTransfer(t *testing.T) { state, err := changeset.LoadOnchainState(e) require.NoError(t, err) - allChainSelectors := maps.Keys(e.Chains) + allChainSelectors := e.AllChainSelectors() require.Len(t, allChainSelectors, 3, "expected 3 chains for this test") chainA := allChainSelectors[0] chainC := allChainSelectors[1] @@ -70,7 +68,7 @@ func TestUSDCTokenTransfer(t *testing.T) { // Add all lanes require.NoError(t, changeset.AddLanesForAll(e, state)) - + changeset.ReplayLogs(t, e.Offchain, tenv.ReplayBlocks) mintAndAllow(t, e, state, map[uint64][]*burn_mint_erc677.BurnMintERC677{ chainA: {aChainUSDC, aChainToken}, chainB: {bChainUSDC}, diff --git a/integration-tests/testconfig/ccip/ccip.toml b/integration-tests/testconfig/ccip/ccip.toml index 85e645ed0b9..579aeef326e 100644 --- a/integration-tests/testconfig/ccip/ccip.toml +++ b/integration-tests/testconfig/ccip/ccip.toml @@ -3,7 +3,7 @@ chainlink_node_funding = 1 [Network] -selected_networks = ['SIMULATED_1', 'SIMULATED_2'] +selected_networks = ['SIMULATED_1', 'SIMULATED_2', 'SIMULATED_3'] [Network.EVMNetworks.SIMULATED_1] evm_name = 'chain-1337'