diff --git a/pkg/commands/git_test.go b/pkg/commands/git_test.go index 2302391ec..3dcb7798d 100644 --- a/pkg/commands/git_test.go +++ b/pkg/commands/git_test.go @@ -1010,7 +1010,7 @@ func TestGitCommandPush(t *testing.T) { }, false, func(err error) { - assert.Contains(t, err.Error(), "exit status 1") + assert.Contains(t, err.Error(), "error: failed to push some refs") }, }, { @@ -1023,7 +1023,7 @@ func TestGitCommandPush(t *testing.T) { }, true, func(err error) { - assert.Contains(t, err.Error(), "exit status 1") + assert.Contains(t, err.Error(), "error: failed to push some refs") }, }, { @@ -1035,7 +1035,7 @@ func TestGitCommandPush(t *testing.T) { }, false, func(err error) { - assert.Contains(t, err.Error(), "exit status 1") + assert.Contains(t, err.Error(), "error: failed to push some refs") }, }, }