Skip to content

Commit

Permalink
fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
EdSwordsmith committed Jan 28, 2025
1 parent 306a698 commit d06db8f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 0 additions & 1 deletion services/cd-service/pkg/service/overview_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,6 @@ func TestDeploymentHistory(t *testing.T) {
svc := &OverviewServiceServer{
Repository: repo,
Shutdown: shutdown,
DBHandler: repo.State().DBHandler,
Context: ctx,
}
tc.Test(t, svc)
Expand Down
5 changes: 5 additions & 0 deletions services/rollout-service/pkg/versions/versions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,11 @@ func (m *mockOverviewClient) StreamChangedApps(ctx context.Context, in *api.GetC
return m, nil
}

// StreamOverview implements api.OverviewServiceClient
func (m *mockOverviewClient) StreamDeploymentHistory(ctx context.Context, in *api.DeploymentHistoryRequest, opts ...grpc.CallOption) (api.OverviewService_StreamDeploymentHistoryClient, error) {
return nil, nil
}

func (m *mockOverviewClient) Recv() (*api.GetChangedAppsResponse, error) {
var reply step
var ok bool
Expand Down

0 comments on commit d06db8f

Please sign in to comment.