1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-03-05 15:15:49 +02:00

Tried to fix circleci

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

View File

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