Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package deploy_test
package evmdeploy_test

import (
"math/big"
Expand All @@ -23,7 +23,6 @@ import (
"github.com/smartcontractkit/cld-changesets/mcms/changesets/deploy"
evmreaders "github.com/smartcontractkit/cld-changesets/mcms/evm/readers"

// Import EVM deploy package to auto-register the EVM family via init().
_ "github.com/smartcontractkit/cld-changesets/mcms/evm/deploy"
)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package firedrill_test
package evmfiredrill_test

import (
"testing"
Expand All @@ -18,7 +18,8 @@ import (
legacymcms "github.com/smartcontractkit/cld-changesets/legacy/mcms/changesets"
firedrill "github.com/smartcontractkit/cld-changesets/mcms/changesets/firedrill"

_ "github.com/smartcontractkit/cld-changesets/mcms/changesets/firedrill/all"
_ "github.com/smartcontractkit/cld-changesets/mcms/evm/firedrill"
_ "github.com/smartcontractkit/cld-changesets/mcms/evm/readers"
)

func TestChangeset_Apply_evmProposal(t *testing.T) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package firedrill_test
package solfiredrill_test

import (
"testing"
Expand All @@ -19,7 +19,8 @@ import (
soltestutils "github.com/smartcontractkit/cld-changesets/legacy/pkg/family/solana/testutils"
firedrill "github.com/smartcontractkit/cld-changesets/mcms/changesets/firedrill"

_ "github.com/smartcontractkit/cld-changesets/mcms/changesets/firedrill/all"
_ "github.com/smartcontractkit/cld-changesets/mcms/solana/firedrill"
_ "github.com/smartcontractkit/cld-changesets/mcms/solana/readers"
)

//nolint:paralleltest // global mcm.SetProgramID state; serialized via soltestutils.PreloadMCMS lock
Expand Down
Loading