From 8837941d863fe9df7035b54bbcf305353a4ec81c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 26 Feb 2026 03:45:06 +0000 Subject: [PATCH 1/2] Initial plan From e37b5f0e8e8c16f1380969f3cdc836764db50017 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 26 Feb 2026 04:24:30 +0000 Subject: [PATCH 2/2] fix: update TestNewPRTransferSubcommand to reflect --verbose being a global persistent flag Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- pkg/cli/pr_command_test.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkg/cli/pr_command_test.go b/pkg/cli/pr_command_test.go index b221ec9b75..203772ddcf 100644 --- a/pkg/cli/pr_command_test.go +++ b/pkg/cli/pr_command_test.go @@ -180,10 +180,4 @@ func TestNewPRTransferSubcommand(t *testing.T) { if repoFlag == nil { t.Error("Expected --repo flag to exist") } - - // Check that --verbose flag exists - verboseFlag := cmd.Flags().Lookup("verbose") - if verboseFlag == nil { - t.Error("Expected --verbose flag to exist") - } }