(remotePushDefault string, err error)
| 950 | } |
| 951 | |
| 952 | func stubRemotePushDefault(remotePushDefault string, err error) func(context.Context) (string, error) { |
| 953 | return func(_ context.Context) (string, error) { |
| 954 | return remotePushDefault, err |
| 955 | } |
| 956 | } |
| 957 | |
| 958 | func stubPushRevision(parsedPushRevision git.RemoteTrackingRef, err error) func(context.Context, string) (git.RemoteTrackingRef, error) { |
| 959 | return func(_ context.Context, _ string) (git.RemoteTrackingRef, error) { |
no outgoing calls
no test coverage detected