(ctx context.Context, _ string)
| 686 | type contextStorage struct{} |
| 687 | |
| 688 | func (*contextStorage) GetWithContext(ctx context.Context, _ string) ([]byte, error) { |
| 689 | return nil, ctx.Err() //nolint:wrapcheck // test stub returns ctx.Err() verbatim |
| 690 | } |
| 691 | |
| 692 | func (*contextStorage) Get(string) ([]byte, error) { return nil, nil } |
| 693 |