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:
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…
x
Reference in New Issue
Block a user