Skip to content

Commit

Permalink
integration-tests: bump chainlink/v2 and chainlink/integration-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jmank88 committed Oct 5, 2023
1 parent c48b0b9 commit e67ab63
Show file tree
Hide file tree
Showing 4 changed files with 823 additions and 148 deletions.
11 changes: 7 additions & 4 deletions integration-tests/common/test_common.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,16 @@ import (
"time"

"github.com/onsi/gomega"
"github.com/stretchr/testify/require"

"github.com/smartcontractkit/chainlink-env/environment"
"github.com/smartcontractkit/chainlink-env/logging"
"github.com/smartcontractkit/chainlink-solana/integration-tests/solclient"
"github.com/smartcontractkit/chainlink-testing-framework/utils"
"github.com/stretchr/testify/require"

"github.com/smartcontractkit/chainlink/integration-tests/client"
"golang.org/x/sync/errgroup"

"github.com/smartcontractkit/chainlink/integration-tests/client"
)

const (
Expand Down Expand Up @@ -199,7 +202,7 @@ func (m *OCRv2TestState) DeployEnv(contractsDir string) {

func (m *OCRv2TestState) NewSolanaClientSetup(networkSettings *solclient.SolNetwork) func(*environment.Environment) (*solclient.Client, error) {
return func(env *environment.Environment) (*solclient.Client, error) {
l := utils.GetTestLogger(m.T)
l := logging.GetTestLogger(m.T)
networkSettings.URLs = env.URLs[networkSettings.Name]
ec, err := solclient.NewClient(networkSettings)
if err != nil {
Expand Down Expand Up @@ -350,7 +353,7 @@ type Answer struct {
}

func (m *OCRv2TestState) ValidateRoundsAfter(chaosStartTime time.Time, timeout time.Duration, rounds int) {
l := utils.GetTestLogger(m.T)
l := logging.GetTestLogger(m.T)
m.RoundsFound = 0
for _, c := range m.Contracts {
m.LastRoundTime[c.OCR2.Address()] = chaosStartTime
Expand Down
Loading

0 comments on commit e67ab63

Please sign in to comment.