Skip to content

Commit

Permalink
Update shell_test.go to use TestDataSource
Browse files Browse the repository at this point in the history
  • Loading branch information
reductionista committed Nov 12, 2024
1 parent 8693629 commit a21ed05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/cmd/shell_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"github.com/urfave/cli"

commoncfg "github.com/smartcontractkit/chainlink-common/pkg/config"
mocksqlutil "github.com/smartcontractkit/chainlink-common/pkg/sqlutil/mocks"
"github.com/smartcontractkit/chainlink-common/pkg/sqlutil"
solcfg "github.com/smartcontractkit/chainlink-solana/pkg/solana/config"
stkcfg "github.com/smartcontractkit/chainlink-starknet/relayer/pkg/chainlink/config"

Expand Down Expand Up @@ -355,7 +355,7 @@ func TestSetupSolanaRelayer(t *testing.T) {
lggr := logger.TestLogger(t)
reg := plugins.NewLoopRegistry(lggr, nil, nil, nil, "")
ks := mocks.NewSolana(t)
ds := mocksqlutil.NewDataSource(t)
ds := sqlutil.NewTestDataSource(t)

// config 3 chains but only enable 2 => should only be 2 relayer
nEnabledChains := 2
Expand Down

0 comments on commit a21ed05

Please sign in to comment.