(remotes ghContext.Remotes, err error)
| 932 | } |
| 933 | |
| 934 | func stubRemotes(remotes ghContext.Remotes, err error) func() (ghContext.Remotes, error) { |
| 935 | return func() (ghContext.Remotes, error) { |
| 936 | return remotes, err |
| 937 | } |
| 938 | } |
| 939 | |
| 940 | func stubBaseRepoFn(baseRepo ghrepo.Interface, err error) func() (ghrepo.Interface, error) { |
| 941 | return func() (ghrepo.Interface, error) { |
no outgoing calls
no test coverage detected