1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-04-27 12:32:37 +02:00

Tried to fix circleci

This commit is contained in:
mjarkk 2018-12-14 13:43:13 +01:00
parent d11f8989d9
commit 70cd6700e7

View File

@ -1010,7 +1010,7 @@ func TestGitCommandPush(t *testing.T) {
},
false,
func(err error) {
assert.Equal(t, "exit status 128", err.Error())
assert.Contains(t, "exit status 1", err.Error())
},
},
{
@ -1023,7 +1023,7 @@ func TestGitCommandPush(t *testing.T) {
},
true,
func(err error) {
assert.Equal(t, "exit status 128", err.Error())
assert.Contains(t, "exit status 1", err.Error())
},
},
{
@ -1035,7 +1035,6 @@ func TestGitCommandPush(t *testing.T) {
},
false,
func(err error) {
assert.Contains(t, "exit status 1", err.Error())
},
},