From 7cd71ee533742c941185294cd0a392f45cddbeee Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Feb 2026 23:30:15 +0000 Subject: [PATCH 1/2] Initial plan From 8dd3ad0f66f67be99473dfe48e8b66347d948da8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Feb 2026 23:35:52 +0000 Subject: [PATCH 2/2] Fix testifylint violations in trial_dry_run_test.go Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- pkg/cli/trial_dry_run_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cli/trial_dry_run_test.go b/pkg/cli/trial_dry_run_test.go index 22d407b93e3..226f32a4cac 100644 --- a/pkg/cli/trial_dry_run_test.go +++ b/pkg/cli/trial_dry_run_test.go @@ -269,7 +269,7 @@ func TestDryRunNoActualAPICallsForCreate(t *testing.T) { output := buf.String() // Should not error - assert.NoError(t, err, "Dry-run should not error") + require.NoError(t, err, "Dry-run should not error") // Should indicate that it would create the repository if strings.Contains(output, "exists") { @@ -333,7 +333,7 @@ func TestDryRunForceDeleteBehavior(t *testing.T) { buf.ReadFrom(r) output := buf.String() - assert.NoError(t, err, "Should not error in dry-run mode") + require.NoError(t, err, "Should not error in dry-run mode") assert.Contains(t, output, "[DRY RUN]", "Should show dry-run prefix") }) }