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