| 5922 | } |
| 5923 | |
| 5924 | type failingStorage struct { |
| 5925 | err error |
| 5926 | } |
| 5927 | |
| 5928 | func (*failingStorage) Get(string) ([]byte, error) { return nil, nil } |
| 5929 | func (s *failingStorage) Set(string, []byte, time.Duration) error { return s.err } |
nothing calls this directly
no outgoing calls
no test coverage detected