From 24c7b25afdb44a12ea823029c3fd7a3092a8be73 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 12 May 2026 13:04:19 +0000 Subject: [PATCH] fix(copilot): update test assertion to match updated error message --- pkg/cmd/copilot/copilot_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/copilot/copilot_test.go b/pkg/cmd/copilot/copilot_test.go index 16c0b1155..fa173f528 100644 --- a/pkg/cmd/copilot/copilot_test.go +++ b/pkg/cmd/copilot/copilot_test.go @@ -613,7 +613,7 @@ func TestRunCopilot_execFailureHint(t *testing.T) { err := runCopilot(opts) require.Error(t, err) require.ErrorIs(t, err, execErr) - require.Contains(t, err.Error(), "Try running `copilot` directly without `gh`.") + require.Contains(t, err.Error(), "try running `copilot` directly without `gh`.") } func TestCopilotCommandIsSampledAt100(t *testing.T) {