From 1420149d8b7214ef34d90152b0ef0541e9cb9866 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 3 May 2026 23:28:21 +0000 Subject: [PATCH] fix: add sender_email to _make_smtp_config test helper Agent-Logs-Url: https://github.com/christianlouis/InboxConverge/sessions/5238ada2-2323-41a8-b58c-d3a49f9ffafd Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> --- backend/tests/unit/test_users_endpoints.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/tests/unit/test_users_endpoints.py b/backend/tests/unit/test_users_endpoints.py index edf2dde..ab9675d 100644 --- a/backend/tests/unit/test_users_endpoints.py +++ b/backend/tests/unit/test_users_endpoints.py @@ -52,6 +52,7 @@ def _make_smtp_config(**overrides) -> MagicMock: username="user@example.com", encrypted_password="encrypted", use_tls=True, + sender_email="", created_at=datetime.now(timezone.utc), updated_at=datetime.now(timezone.utc), )