summaryrefslogtreecommitdiffstats
path: root/pkg/test/utils.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/test/utils.go')
-rw-r--r--pkg/test/utils.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/test/utils.go b/pkg/test/utils.go
index b27bdbbab..47f2c1146 100644
--- a/pkg/test/utils.go
+++ b/pkg/test/utils.go
@@ -7,6 +7,7 @@ import (
"strings"
"testing"
+ "github.com/jesseduffield/lazygit/pkg/secureexec"
"github.com/mgutz/str"
"github.com/stretchr/testify/assert"
)
@@ -27,7 +28,7 @@ func (i *CommandSwapper) SwapCommand(t *testing.T, cmd string, args []string) *e
}
splitCmd = str.ToArgv(i.Replace)
- return exec.Command(splitCmd[0], splitCmd[1:]...)
+ return secureexec.Command(splitCmd[0], splitCmd[1:]...)
}
// CreateMockCommand creates a command function that will verify its receiving the right sequence of commands from lazygit