From 9f8aaf0103ca19fcb32558be85e99b300ab928ef Mon Sep 17 00:00:00 2001 From: sec-check Date: Mon, 29 Jun 2026 20:14:11 -0400 Subject: [PATCH] [quality] fix: align solver test emoji with production code (P0) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit solver.go uses \u2746 (❆) for resolved notifications but solver_coverage_test.go expected \u2726 (✦), causing go test failures on main and all open PRs. Update both test assertions (lines 136 and 456) to match the production emoji. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Signed-off-by: sec-check --- pkg/stellar/solver/solver_coverage_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/stellar/solver/solver_coverage_test.go b/pkg/stellar/solver/solver_coverage_test.go index f9eda3fd2c..b7178f09b6 100644 --- a/pkg/stellar/solver/solver_coverage_test.go +++ b/pkg/stellar/solver/solver_coverage_test.go @@ -133,7 +133,7 @@ func TestTerminateResolved(t *testing.T) { if len(storage.notifications) != 1 { t.Fatalf("notifications = %d, want 1", len(storage.notifications)) } - if storage.notifications[0].Title != "\u2726 Stellar resolved an issue" { + if storage.notifications[0].Title != "\u2746 Stellar resolved an issue" { t.Fatalf("title = %q, want resolved title", storage.notifications[0].Title) } // Should broadcast solve_complete @@ -453,7 +453,7 @@ func TestTerminateAllStatusTypes(t *testing.T) { errStr: "", expectNotifCount: 1, expectSeverity: "info", - expectTitle: "✦ Stellar resolved an issue", + expectTitle: "\u2746 Stellar resolved an issue", }, { name: "escalated status",