diff options
Diffstat (limited to 'internal/executor/container_test.go')
| -rw-r--r-- | internal/executor/container_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/executor/container_test.go b/internal/executor/container_test.go index f840f85..f0b2a3a 100644 --- a/internal/executor/container_test.go +++ b/internal/executor/container_test.go @@ -334,7 +334,7 @@ func TestDetectUncommittedChanges_CleanRepo(t *testing.T) { func TestGitSafe_PrependsSafeDirectory(t *testing.T) { got := gitSafe("-C", "/some/path", "status") - want := []string{"-c", "safe.directory=*", "-C", "/some/path", "status"} + want := []string{"-c", "safe.directory=*", "-c", "commit.gpgsign=false", "-c", "tag.gpgsign=false", "-C", "/some/path", "status"} if len(got) != len(want) { t.Fatalf("gitSafe() = %v, want %v", got, want) } |
