From d63456ac2b7c11844f92c046d94d126c1314e434 Mon Sep 17 00:00:00 2001 From: moltenhub-bot Date: Thu, 28 May 2026 16:45:26 +0000 Subject: [PATCH] chore: https://github.com/Molten-Bot/moltenhub-dispatch/actions/runs/26 Co-authored-by: Molten Bot 000 <260473928+moltenbot000@users.noreply.github.com> --- internal/web/server_test.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/internal/web/server_test.go b/internal/web/server_test.go index c33cdb7..15924b5 100644 --- a/internal/web/server_test.go +++ b/internal/web/server_test.go @@ -3393,9 +3393,14 @@ func TestBundledLogoUsesOriginalFill(t *testing.T) { } content := string(data) - if !strings.Contains(content, `fill="#0091b0"`) || !strings.Contains(content, `data-originalfillcolor="#7b61ff"`) { + if !strings.Contains(content, `fill: #004c4c;`) { t.Fatalf("expected bundled logo to keep original colors, content=%s", content) } + for _, disallowed := range []string{`#ec4899`, `#db2777`, `#0091b0`, `#7b61ff`} { + if strings.Contains(content, disallowed) { + t.Fatalf("expected bundled logo to avoid stale theme color %q, content=%s", disallowed, content) + } + } } func TestHandleIndexHidesSubActionsUntilBoundAndConnected(t *testing.T) {