(key string, val []byte, exp time.Duration)
| 158 | } |
| 159 | |
| 160 | func (s *failingCacheStorage) Set(key string, val []byte, exp time.Duration) error { |
| 161 | return s.SetWithContext(context.Background(), key, val, exp) |
| 162 | } |
| 163 | |
| 164 | func (s *failingCacheStorage) DeleteWithContext(_ context.Context, key string) error { |
| 165 | s.mu.Lock() |
nothing calls this directly
no test coverage detected