| 2327 | } |
| 2328 | |
| 2329 | type fakeCloserWaiter struct { |
| 2330 | closeCalls chan chan error |
| 2331 | errCh chan error |
| 2332 | } |
| 2333 | |
| 2334 | func (f *fakeCloserWaiter) Close(ctx context.Context) error { |
| 2335 | errRes := make(chan error) |
nothing calls this directly
no outgoing calls
no test coverage detected