(remotes ghContext.Remotes, err error)
| 496 | } |
| 497 | |
| 498 | func stubRemoteToRepoResolver(remotes ghContext.Remotes, err error) remoteToRepoResolver { |
| 499 | return NewRemoteToRepoResolver(func() (ghContext.Remotes, error) { |
| 500 | return remotes, err |
| 501 | }) |
| 502 | } |
| 503 | |
| 504 | func mustParseQualifiedHeadRef(ref string) QualifiedHeadRef { |
| 505 | parsed, err := ParseQualifiedHeadRef(ref) |
no test coverage detected