From b80535d211f6e265b4bfbd3da0483f4ce199aa33 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 10 Dec 2025 20:28:36 +0000 Subject: [PATCH] Fix formatting in setupTestCommand function - Remove extra blank line after t.Helper() for Go formatting consistency Co-authored-by: Belphemur <197810+Belphemur@users.noreply.github.com> --- cmd/cbzoptimizer/commands/optimize_command_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/cbzoptimizer/commands/optimize_command_test.go b/cmd/cbzoptimizer/commands/optimize_command_test.go index 65e92ef..5fd853b 100644 --- a/cmd/cbzoptimizer/commands/optimize_command_test.go +++ b/cmd/cbzoptimizer/commands/optimize_command_test.go @@ -181,7 +181,6 @@ func TestConvertCbzCommand(t *testing.T) { // - func(): A cleanup function that must be deferred to restore the original converter.Get func setupTestCommand(t *testing.T) (*cobra.Command, func()) { t.Helper() - // Mock the converter.Get function originalGet := converter.Get converter.Get = func(format constant.ConversionFormat) (converter.Converter, error) {