1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-04-19 12:12:42 +02:00

Fix opening the current test file from the integration test gui

This commit is contained in:
Stefan Haller 2023-02-26 09:53:02 +01:00
parent c36333af3d
commit 5a50bfd179

View File

@ -121,7 +121,7 @@ func RunTUI() {
return nil return nil
} }
cmd := secureexec.Command("sh", "-c", fmt.Sprintf("code -r pkg/integration/tests/%s", currentTest.Name())) cmd := secureexec.Command("sh", "-c", fmt.Sprintf("code -r pkg/integration/tests/%s.go", currentTest.Name()))
if err := cmd.Run(); err != nil { if err := cmd.Run(); err != nil {
return err return err
} }