| 150 | } |
| 151 | |
| 152 | type stubPRResolver struct { |
| 153 | pr *api.PullRequest |
| 154 | baseRepo ghrepo.Interface |
| 155 | |
| 156 | err error |
| 157 | } |
| 158 | |
| 159 | func (s *stubPRResolver) Resolve() (*api.PullRequest, ghrepo.Interface, error) { |
| 160 | if s.err != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected