Skip to content

Commit

Permalink
fix: logger import
Browse files Browse the repository at this point in the history
  • Loading branch information
aalu1418 committed Sep 16, 2024
1 parent 5db1056 commit 2a8ded2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/monitoring/source_envelope_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ import (
bin "github.com/gagliardetto/binary"
"github.com/gagliardetto/solana-go"
"github.com/gagliardetto/solana-go/rpc"
"github.com/smartcontractkit/chainlink/v2/core/logger"
"github.com/smartcontractkit/libocr/offchainreporting2/types"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/require"
"go.uber.org/zap/zapcore"

"github.com/smartcontractkit/chainlink-common/pkg/logger"
commonMonitoring "github.com/smartcontractkit/chainlink-common/pkg/monitoring"
"github.com/smartcontractkit/chainlink-common/pkg/utils/tests"

Expand Down Expand Up @@ -158,7 +158,7 @@ func TestEnvelopeSource(t *testing.T) {
).Return(fakeTxResult, nil)

// Call Fetch
lgr, logs := logger.TestLoggerObserved(t, zapcore.DebugLevel)
lgr, logs := logger.TestObserved(t, zapcore.DebugLevel)
factory := NewEnvelopeSourceFactory(chainReader, lgr)
source, err := factory.NewSource(chainConfig, feedConfig)
require.NoError(t, err)
Expand Down

0 comments on commit 2a8ded2

Please sign in to comment.