summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Haller <stefan@haller-berlin.de>2023-02-26 09:53:02 +0100
committerStefan Haller <stefan@haller-berlin.de>2023-03-07 09:49:34 +0100
commit5a50bfd1792f1518c3442ebfec836ce95b785683 (patch)
treefd10de69bc24abe4cd469b4b1b79cb8d5215d359
parentc36333af3d15c7422401af9da7c0648d6aead89f (diff)
Fix opening the current test file from the integration test gui
-rw-r--r--pkg/integration/clients/tui.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/integration/clients/tui.go b/pkg/integration/clients/tui.go
index f93f4589a..6778bc012 100644
--- a/pkg/integration/clients/tui.go
+++ b/pkg/integration/clients/tui.go
@@ -121,7 +121,7 @@ func RunTUI() {
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 {
return err
}