()
| 333 | } |
| 334 | |
| 335 | func (v *deliveryAttemptView) AsTableRow() []string { |
| 336 | return []string{ |
| 337 | fmt.Sprintf("%d", v.Index), |
| 338 | statusColor(v.Status), |
| 339 | v.Timestamp, |
| 340 | v.Duration, |
| 341 | v.Error, |
| 342 | } |
| 343 | } |
| 344 | |
| 345 | func (v *deliveryAttemptView) Object() interface{} { |
| 346 | return v.raw |
nothing calls this directly
no test coverage detected