Skip to content

Commit

Permalink
go mod
Browse files Browse the repository at this point in the history
  • Loading branch information
AnieeG committed Dec 9, 2024
1 parent ea6796d commit 0450e47
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions deployment/ccip/changeset/test_environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ func NewMemoryEnvironment(t *testing.T, opts ...TestOps) DeployedEnv {
for _, opt := range opts {
opt(testCfg)
}
require.NoError(t, testCfg.Validate(), "invalid test config")
env := &MemoryEnvironment{}
if testCfg.CreateJobAndContracts {
return NewEnvironmentWithJobsAndContracts(t, testCfg, env)
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ require (
github.com/segmentio/ksuid v1.0.4
github.com/shopspring/decimal v1.4.0
github.com/slack-go/slack v0.15.0
github.com/smartcontractkit/ccip-owner-contracts v0.0.0-20240926212305-a6deabdfce86
github.com/smartcontractkit/chain-selectors v1.0.34
github.com/smartcontractkit/chainlink-automation v0.8.1
github.com/smartcontractkit/chainlink-ccip v0.0.0-20241204015713-8956bb614e9e
Expand Down Expand Up @@ -419,6 +418,7 @@ require (
github.com/shirou/gopsutil/v3 v3.24.3 // indirect
github.com/shoenig/go-m1cpu v0.1.6 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/smartcontractkit/ccip-owner-contracts v0.0.0-20240926212305-a6deabdfce86 // indirect

Check failure on line 421 in integration-tests/go.mod

View workflow job for this annotation

GitHub Actions / Validate go.mod dependencies

[./integration-tests/go.mod] dependency github.com/smartcontractkit/[email protected] // indirect not on default branch (main). Version(commit): a6deabdfce86 Tree: https://github.com/smartcontractkit/ccip-owner-contracts/tree/a6deabdfce86 Commit: https://github.com/smartcontractkit/ccip-owner-contracts/commit/a6deabdfce86
github.com/smartcontractkit/chainlink-cosmos v0.5.2-0.20241202195413-82468150ac1e // indirect
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20241202141438-a90db35252db // indirect
github.com/smartcontractkit/chainlink-feeds v0.1.1 // indirect
Expand Down
1 change: 1 addition & 0 deletions integration-tests/testsetups/ccip/test_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ func NewIntegrationEnvironment(t *testing.T, opts ...changeset.TestOps) (changes
for _, opt := range opts {
opt(testCfg)
}
require.NoError(t, testCfg.Validate(), "invalid test config")
switch testCfg.Type {
case changeset.Memory:
memEnv := changeset.NewMemoryEnvironment(t, opts...)
Expand Down

0 comments on commit 0450e47

Please sign in to comment.