(a, b error)
| 207 | } |
| 208 | |
| 209 | func cmpError(a, b error) bool { |
| 210 | return a == b || (a != nil && b != nil && a.Error() == b.Error()) |
| 211 | } |
| 212 | |
| 213 | type roundTripper interface { |
| 214 | RoundTrip(req *http.Request) (*http.Response, error) |
no test coverage detected