From 6d43fb23ada50c40cb8d98dd50f4c82a78638658 Mon Sep 17 00:00:00 2001 From: Ryan Kegel Date: Fri, 24 Apr 2026 10:24:32 -0400 Subject: [PATCH] feat: enhance email templates for verification, password reset, and PIN setup --- backend/tests/test_digest_scheduler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/tests/test_digest_scheduler.py b/backend/tests/test_digest_scheduler.py index 0aac3b6..9e43354 100644 --- a/backend/tests/test_digest_scheduler.py +++ b/backend/tests/test_digest_scheduler.py @@ -252,11 +252,11 @@ class TestDigestEmailHtml: send_digest_email(SCHED_EMAIL, self._build_items(), 'unsub_tok') msg = mock_mail.return_value.send.call_args[0][0] # Find the Approve link and verify green color is adjacent - assert '#22863a' in msg.html # green used for Approve + assert '#22c55e' in msg.html # green used for Approve def test_deny_link_styled_red(self, app_ctx): """Deny links use red color styling.""" with patch('utils.email_sender.Mail') as mock_mail: send_digest_email(SCHED_EMAIL, self._build_items(), 'unsub_tok') msg = mock_mail.return_value.send.call_args[0][0] - assert '#cb2431' in msg.html # red used for Deny + assert '#ef4444' in msg.html # red used for Deny