summaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authormjarkk <mkopenga@gmail.com>2018-12-14 13:43:13 +0100
committermjarkk <mkopenga@gmail.com>2018-12-14 13:43:13 +0100
commit70cd6700e7c9efa8fbdb2402d66deb7b6436f2f6 (patch)
tree28a7b133640277a7d3cda2d0e9e058456c872d8e /pkg
parentd11f8989d9f483f278393e0fdb3b1280f8db031b (diff)
Tried to fix circleci
Diffstat (limited to 'pkg')
-rw-r--r--pkg/commands/git_test.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkg/commands/git_test.go b/pkg/commands/git_test.go
index 7d29f6889..f599aeed4 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.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())
},
},