(key string)
| 172 | } |
| 173 | |
| 174 | func (s *failingCacheStorage) Delete(key string) error { |
| 175 | return s.DeleteWithContext(context.Background(), key) |
| 176 | } |
| 177 | |
| 178 | func (s *failingCacheStorage) ResetWithContext(context.Context) error { |
| 179 | s.mu.Lock() |
nothing calls this directly
no test coverage detected