summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-04-14 20:24:35 +1000
committerJesse Duffield <jessedduffield@gmail.com>2023-04-14 20:24:35 +1000
commite5e3cc200e6c074505238505e62281d08c30535b (patch)
treeb5bff9ad9a70b30d64aff5e028c7833320fdc74d
parent8e4efddbf79a471427f510a0020ac45420fa7657 (diff)
-rw-r--r--pkg/integration/tests/custom_commands/basic_at_runtime.go2
-rw-r--r--pkg/integration/tests/custom_commands/basic_at_runtime_history.go2
-rw-r--r--pkg/integration/tests/custom_commands/basic_from_config.go2
-rw-r--r--pkg/integration/tests/test_list.go6
4 files changed, 6 insertions, 6 deletions
diff --git a/pkg/integration/tests/custom_commands/basic_at_runtime.go b/pkg/integration/tests/custom_commands/basic_at_runtime.go
index 96b9b9174..9f05bc8cb 100644
--- a/pkg/integration/tests/custom_commands/basic_at_runtime.go
+++ b/pkg/integration/tests/custom_commands/basic_at_runtime.go
@@ -5,7 +5,7 @@ import (
. "github.com/jesseduffield/lazygit/pkg/integration/components"
)
-var BasicCmdAtRuntime = NewIntegrationTest(NewIntegrationTestArgs{
+var BasicAtRuntime = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Using a custom command provided at runtime to create a new file",
ExtraCmdArgs: "",
Skip: false,
diff --git a/pkg/integration/tests/custom_commands/basic_at_runtime_history.go b/pkg/integration/tests/custom_commands/basic_at_runtime_history.go
index 40cf5b328..1ff3ddd84 100644
--- a/pkg/integration/tests/custom_commands/basic_at_runtime_history.go
+++ b/pkg/integration/tests/custom_commands/basic_at_runtime_history.go
@@ -5,7 +5,7 @@ import (
. "github.com/jesseduffield/lazygit/pkg/integration/components"
)
-var OmitFromHistory = NewIntegrationTest(NewIntegrationTestArgs{
+var BasicAtRuntimeHistory = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Omitting a runtime custom command from history if it begins with space",
ExtraCmdArgs: "",
Skip: false,
diff --git a/pkg/integration/tests/custom_commands/basic_from_config.go b/pkg/integration/tests/custom_commands/basic_from_config.go
index 0f15183d9..68f543459 100644
--- a/pkg/integration/tests/custom_commands/basic_from_config.go
+++ b/pkg/integration/tests/custom_commands/basic_from_config.go
@@ -5,7 +5,7 @@ import (
. "github.com/jesseduffield/lazygit/pkg/integration/components"
)
-var BasicCmdFromConfig = NewIntegrationTest(NewIntegrationTestArgs{
+var BasicFromConfig = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Using a custom command to create a new file",
ExtraCmdArgs: "",
Skip: false,
diff --git a/pkg/integration/tests/test_list.go b/pkg/integration/tests/test_list.go
index b44246abf..efca2cf51 100644
--- a/pkg/integration/tests/test_list.go
+++ b/pkg/integration/tests/test_list.go
@@ -64,9 +64,9 @@ var tests = []*components.IntegrationTest{
conflicts.ResolveExternally,
conflicts.ResolveMultipleFiles,
conflicts.UndoChooseHunk,
- custom_commands.BasicCmdFromConfig,
- custom_commands.BasicCmdAtRuntime,
- custom_commands.OmitFromHistory,
+ custom_commands.BasicAtRuntime,
+ custom_commands.BasicAtRuntimeHistory,
+ custom_commands.BasicFromConfig,
custom_commands.FormPrompts,
custom_commands.MenuFromCommand,
custom_commands.MenuFromCommandsOutput,