From f03544f392edb2e7be016f9c68d21d259da96acd Mon Sep 17 00:00:00 2001 From: Anthony HAMON Date: Tue, 11 Sep 2018 22:20:59 +0200 Subject: [PATCH] commands/git : fix test --- pkg/commands/git_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/commands/git_test.go b/pkg/commands/git_test.go index c90ce324c..18d90b765 100644 --- a/pkg/commands/git_test.go +++ b/pkg/commands/git_test.go @@ -838,7 +838,7 @@ func TestGitCommandCommit(t *testing.T) { "Commit using gpg", func(cmd string, args ...string) *exec.Cmd { assert.EqualValues(t, "bash", cmd) - assert.EqualValues(t, []string{"-c", `git commit -m "test"`}, args) + assert.EqualValues(t, []string{"-c", `git commit -m 'test'`}, args) return exec.Command("echo") },