From 0df5e088284c4f722904c423de631ba5bb2da2ca Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Mon, 24 Feb 2025 08:44:30 +0100 Subject: [PATCH] Don't set showOutput explicitly It is false by default. This way there's one less change to make in the next commit. --- pkg/integration/tests/custom_commands/global_context.go | 7 +++---- pkg/integration/tests/custom_commands/multiple_contexts.go | 7 +++---- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/pkg/integration/tests/custom_commands/global_context.go b/pkg/integration/tests/custom_commands/global_context.go index 9f975d04c..82ef53010 100644 --- a/pkg/integration/tests/custom_commands/global_context.go +++ b/pkg/integration/tests/custom_commands/global_context.go @@ -15,10 +15,9 @@ var GlobalContext = NewIntegrationTest(NewIntegrationTestArgs{ SetupConfig: func(cfg *config.AppConfig) { cfg.GetUserConfig().CustomCommands = []config.CustomCommand{ { - Key: "X", - Context: "global", - Command: "touch myfile", - ShowOutput: false, + Key: "X", + Context: "global", + Command: "touch myfile", }, } }, diff --git a/pkg/integration/tests/custom_commands/multiple_contexts.go b/pkg/integration/tests/custom_commands/multiple_contexts.go index a5c982ee3..61d46775b 100644 --- a/pkg/integration/tests/custom_commands/multiple_contexts.go +++ b/pkg/integration/tests/custom_commands/multiple_contexts.go @@ -15,10 +15,9 @@ var MultipleContexts = NewIntegrationTest(NewIntegrationTestArgs{ SetupConfig: func(cfg *config.AppConfig) { cfg.GetUserConfig().CustomCommands = []config.CustomCommand{ { - Key: "X", - Context: "commits, reflogCommits", - Command: "touch myfile", - ShowOutput: false, + Key: "X", + Context: "commits, reflogCommits", + Command: "touch myfile", }, } },