Skip to content

Commit 1cd1ba7

Browse files
committed
Merge branch 'feature/INFOPLAT-3250-chip-ingress-add-nop-info-lookup-token' of https://github.com/smartcontractkit/chainlink-common into feature/INFOPLAT-3250-chip-ingress-add-nop-info-lookup-token
2 parents 46d22f6 + dcb4562 commit 1cd1ba7

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

pkg/chipingress/client_test.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@ import (
77
"time"
88

99
ce "github.com/cloudevents/sdk-go/v2"
10-
"google.golang.org/grpc"
1110
"github.com/stretchr/testify/assert"
1211
"github.com/stretchr/testify/require"
13-
"google.golang.org/grpc"
12+
gp "google.golang.org/grpc"
1413
"google.golang.org/grpc/credentials"
1514
"google.golang.org/grpc/credentials/insecure"
1615
"google.golang.org/grpc/metadata"
1716
"google.golang.org/protobuf/proto"
18-
17+
1918
"github.com/smartcontractkit/chainlink-common/pkg/chipingress/mocks"
2019
"github.com/smartcontractkit/chainlink-common/pkg/chipingress/pb"
2120
)
@@ -595,7 +594,7 @@ func TestHeaderInterceptor(t *testing.T) {
595594

596595
// Create a mock invoker that captures the context
597596
var capturedCtx context.Context
598-
mockInvoker := func(ctx context.Context, method string, req, reply interface{}, cc *grpc.ClientConn, opts ...grpc.CallOption) error {
597+
mockInvoker := func(ctx context.Context, method string, req, reply interface{}, cc *gp.ClientConn, opts ...gp.CallOption) error {
599598
capturedCtx = ctx
600599
return nil
601600
}

0 commit comments

Comments
 (0)