()
| 86 | type customError int |
| 87 | |
| 88 | func (e customError) Error() string { |
| 89 | return fmt.Sprintf("error: %d", int(e)) |
| 90 | } |
| 91 | |
| 92 | // stringizeWants converts a slice of wanted test output into a format suitable |
| 93 | // for a test error message. |
no test coverage detected