Skip to content

Commit

Permalink
Fix linter error
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Haudum <[email protected]>
  • Loading branch information
chaudum committed Apr 2, 2024
1 parent 1197193 commit 4bfbe45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/storage/stores/shipper/bloomshipper/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ type mockListClient struct {
counter int
}

func (c *mockListClient) List(_ context.Context, prefix string, delimiter string) ([]client.StorageObject, []client.StorageCommonPrefix, error) {
func (c *mockListClient) List(_ context.Context, prefix string, _ string) ([]client.StorageObject, []client.StorageCommonPrefix, error) {
c.counter++
objects := []client.StorageObject{
{Key: path.Join(path.Base(prefix), "object")},
Expand Down

0 comments on commit 4bfbe45

Please sign in to comment.