diff --git a/integration-tests/smoke/ocr2_test.go b/integration-tests/smoke/ocr2_test.go index fda544958..328a42a03 100644 --- a/integration-tests/smoke/ocr2_test.go +++ b/integration-tests/smoke/ocr2_test.go @@ -2,7 +2,6 @@ package smoke import ( "fmt" - tc "github.com/smartcontractkit/chainlink/integration-tests/testconfig" "maps" "sort" "testing" @@ -17,6 +16,8 @@ import ( "go.uber.org/zap/zapcore" "gopkg.in/guregu/null.v4" + tc "github.com/smartcontractkit/chainlink/integration-tests/testconfig" + "github.com/smartcontractkit/chainlink-testing-framework/logging" "github.com/smartcontractkit/chainlink-testing-framework/utils/testcontext" "github.com/smartcontractkit/chainlink/integration-tests/actions" diff --git a/integration-tests/soak/ocr2_soak_test.go b/integration-tests/soak/ocr2_soak_test.go index 8fcc5cc9f..ad633f1de 100644 --- a/integration-tests/soak/ocr2_soak_test.go +++ b/integration-tests/soak/ocr2_soak_test.go @@ -6,12 +6,18 @@ import ( "github.com/stretchr/testify/require" + tc "github.com/smartcontractkit/chainlink/integration-tests/testconfig" + "github.com/smartcontractkit/chainlink-solana/integration-tests/common" "github.com/smartcontractkit/chainlink-solana/integration-tests/utils" ) func TestSolanaOCRV2SoakTest(t *testing.T) { - state, err := common.NewOCRv2State(t, 5, "soak", "devnet", true) + config, err := tc.GetConfig("Smoke", tc.OCR2) + if err != nil { + t.Fatal(err) + } + state, err := common.NewOCRv2State(t, 5, "soak", "devnet", true, &config) require.NoError(t, err, "Could not setup the ocrv2 state") if state.Common.Env.WillUseRemoteRunner() { // run the remote runner and exit