| 28 | ) |
| 29 | |
| 30 | type httpClient struct { |
| 31 | url string |
| 32 | published int |
| 33 | expectedPublished int |
| 34 | wait chan struct{} |
| 35 | } |
| 36 | |
| 37 | func (c *httpClient) Connect() error { |
| 38 | //nolint:noctx |
nothing calls this directly
no outgoing calls
no test coverage detected