(err error)
| 618 | } |
| 619 | |
| 620 | func silentEOF(err error) error { |
| 621 | if errors.Is(err, io.EOF) { |
| 622 | err = nil |
| 623 | } |
| 624 | return err |
| 625 | } |
| 626 | |
| 627 | func dontExpectEOF(err error) error { |
| 628 | if errors.Is(err, io.EOF) { |
no outgoing calls
no test coverage detected