Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dmarquez-splunk committed Jun 14, 2024
1 parent 90b1c36 commit 7f8c93e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions internal/plugin/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package plugin
import (
"context"
"github.com/argoproj/argo-cd/v2/pkg/apiclient/account"
"github.com/argoproj/argo-cd/v2/pkg/apiclient/application"
"github.com/argoproj/argo-cd/v2/pkg/apiclient/project"
"github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1"
"google.golang.org/grpc"
Expand Down Expand Up @@ -90,6 +91,10 @@ func (client *testProjectClient) GetSyncWindowsState(ctx context.Context, in *pr
return nil, nil
}

func (client *testProjectClient) ListLinks(ctx context.Context, in *project.ListProjectLinksRequest, opts ...grpc.CallOption) (*application.LinksResponse, error) {
return nil, nil
}

func getTestProjectClientContext(projectClient *testProjectClient) *projectClientContext {
return &projectClientContext{
client: projectClient,
Expand Down

0 comments on commit 7f8c93e

Please sign in to comment.