Skip to content

Commit

Permalink
fix compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
aalu1418 committed Feb 7, 2024
1 parent 37314cc commit 5110965
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
3 changes: 2 additions & 1 deletion integration-tests/smoke/ocr2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package smoke

import (
"fmt"
tc "github.com/smartcontractkit/chainlink/integration-tests/testconfig"
"maps"
"sort"
"testing"
Expand All @@ -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"
Expand Down
8 changes: 7 additions & 1 deletion integration-tests/soak/ocr2_soak_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5110965

Please sign in to comment.