mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-10 15:46:26 -04:00
Tried to fix circleci
This commit is contained in:
parent
70cd6700e7
commit
af26b5f3e0
|
|
@ -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")
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue