Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwanthgoli committed Jan 5, 2024
1 parent 6342932 commit b6e64e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/storage/chunk/cache/resultscache/cache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -663,10 +663,10 @@ func (m mockLimits) MaxCacheFreshness(context.Context, string) time.Duration {

type mockResultsCache struct{}

func (m mockResultsCache) Store(ctx context.Context, key []string, buf [][]byte) error {
func (m mockResultsCache) Store(context.Context, []string, [][]byte) error {
panic("not implemented")
}
func (m mockResultsCache) Fetch(ctx context.Context, keys []string) (found []string, bufs [][]byte, missing []string, err error) {
func (m mockResultsCache) Fetch(context.Context, []string) ([]string, [][]byte, []string, error) {
panic("not implemented")
}
func (m mockResultsCache) Stop() {
Expand Down

0 comments on commit b6e64e1

Please sign in to comment.