diff --git a/backend/internal/cli/dto_drift_e2e_test.go b/backend/internal/cli/dto_drift_e2e_test.go index 5c7e924ac..bf2d29898 100644 --- a/backend/internal/cli/dto_drift_e2e_test.go +++ b/backend/internal/cli/dto_drift_e2e_test.go @@ -132,6 +132,10 @@ func (f *fakeProjectManager) Add(_ context.Context, in projectsvc.AddInput) (pro return projectsvc.Project{ID: id, Path: in.Path}, nil } +func (f *fakeProjectManager) InitializeRepository(_ context.Context, in projectsvc.InitializeRepositoryInput) (projectsvc.InitializeRepositoryResult, error) { + return projectsvc.InitializeRepositoryResult{Path: in.Path}, nil +} + func (f *fakeProjectManager) SetConfig(_ context.Context, id domain.ProjectID, in projectsvc.SetConfigInput) (projectsvc.Project, error) { cfg := in.Config return projectsvc.Project{ID: id, Config: &cfg}, nil