(branchConfig git.BranchConfig, err error)
| 926 | } |
| 927 | |
| 928 | func stubBranchConfig(branchConfig git.BranchConfig, err error) func(context.Context, string) (git.BranchConfig, error) { |
| 929 | return func(_ context.Context, branch string) (git.BranchConfig, error) { |
| 930 | return branchConfig, err |
| 931 | } |
| 932 | } |
| 933 | |
| 934 | func stubRemotes(remotes ghContext.Remotes, err error) func() (ghContext.Remotes, error) { |
| 935 | return func() (ghContext.Remotes, error) { |
no outgoing calls
no test coverage detected