From 2ebc2beda0149a362055cc5e16c42e1549a884ec Mon Sep 17 00:00:00 2001 From: James Bardin Date: Tue, 2 Apr 2019 16:11:32 -0400 Subject: [PATCH] add 3rd param to mock call --- plugin/grpc_provider_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/grpc_provider_test.go b/plugin/grpc_provider_test.go index a2fe37a3ab..cacc36a2e1 100644 --- a/plugin/grpc_provider_test.go +++ b/plugin/grpc_provider_test.go @@ -26,6 +26,7 @@ func mockProviderClient(t *testing.T) *mockproto.MockProviderClient { client.EXPECT().GetSchema( gomock.Any(), gomock.Any(), + gomock.Any(), ).Return(providerProtoSchema(), nil) return client