Skip to content

Commit

Permalink
resolving imports and using local dev env
Browse files Browse the repository at this point in the history
  • Loading branch information
0xsuryansh committed Nov 19, 2024
1 parent 3bfac63 commit 4617621
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration-tests/smoke/ccip_test.go
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
package smoke

import (
"github.com/smartcontractkit/chainlink/v2/core/gethwrappers/shared/generated/burn_mint_erc677"
"math/big"
"testing"

"github.com/ethereum/go-ethereum/common"

"github.com/stretchr/testify/require"

jobv1 "github.com/smartcontractkit/chainlink-protos/job-distributor/v1/job"
"github.com/smartcontractkit/chainlink-testing-framework/lib/utils/testcontext"

"github.com/smartcontractkit/chainlink/deployment"
ccdeploy "github.com/smartcontractkit/chainlink/deployment/ccip"
"github.com/smartcontractkit/chainlink/deployment/ccip/changeset"
"github.com/smartcontractkit/chainlink/integration-tests/ccip-tests/testsetups"
"github.com/smartcontractkit/chainlink/v2/core/gethwrappers/ccip/generated/router"
"github.com/smartcontractkit/chainlink/v2/core/gethwrappers/shared/generated/burn_mint_erc677"
"github.com/smartcontractkit/chainlink/v2/core/logger"
)

Expand Down Expand Up @@ -339,7 +339,7 @@ func getDestinationToken(scenario struct {

func setupEnvironment(t *testing.T) (ccdeploy.DeployedEnv, ccdeploy.CCIPOnChainState) {
lggr := logger.TestLogger(t)
tenv := ccdeploy.NewMemoryEnvironment(t, lggr, 2, 4, ccdeploy.MockLinkPrice, ccdeploy.MockWethPrice)
tenv, _, _ := testsetups.NewLocalDevEnvironmentWithDefaultPrice(t, lggr)
state, err := ccdeploy.LoadOnchainState(tenv.Env)
require.NoError(t, err)
return tenv, state
Expand Down

0 comments on commit 4617621

Please sign in to comment.