()
| 50 | } |
| 51 | |
| 52 | func (m *errMessage) getMessage() string { |
| 53 | if len(m.msgs) == 0 { |
| 54 | return "" |
| 55 | } |
| 56 | return strings.Join(m.msgs, ",") |
| 57 | } |
| 58 | |
| 59 | func (m *errMessage) getPrettifiedMessage() string { |
| 60 | if len(m.msgs) == 0 { |
no outgoing calls
no test coverage detected