Skip to content

Commit

Permalink
GBICSGO-2277: fixes missing method for stub
Browse files Browse the repository at this point in the history
  • Loading branch information
KaanTolunayKilicOG committed Aug 18, 2024
1 parent e5ac9aa commit 219393d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/processor/schedule_processor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,10 @@ type stubGcsClient struct {
fDeleteObjectsErr error
}

func (g *stubGcsClient) DeleteObjectWithPrefix(ctxIn context.Context, bucket string, objectPrefixName string) error {
panic("implement me")
}

func (g *stubGcsClient) GetProject(ctxIn context.Context, projectID string) (*resourcemanagerpb.Project, error) {
panic("implement me")
}
Expand Down

0 comments on commit 219393d

Please sign in to comment.