explicitly return newlines to our live command stdin

This commit is contained in:
Jesse Duffield 2018-12-18 22:23:17 +11:00
parent 865c7c2332
commit 20a94447d7
4 changed files with 5 additions and 12 deletions

View file

@ -1045,7 +1045,7 @@ func TestGitCommandPush(t *testing.T) {
gitCmd := newDummyGitCommand()
gitCmd.OSCommand.command = s.command
err := gitCmd.Push("test", s.forcePush, func(passOrUname string) string {
return "-"
return "\n"
})
s.test(err)
})