suite green
Browse files- tests/test_handoff.py +1 -1
tests/test_handoff.py
CHANGED
|
@@ -141,7 +141,7 @@ async def test_handoff_uses_brevo_api_when_configured(db_session, monkeypatch):
|
|
| 141 |
|
| 142 |
captured = {}
|
| 143 |
|
| 144 |
-
async def fake_send(self, to, subject, body, *, reply_to=None, sender_name=None):
|
| 145 |
captured.update(to=to, reply_to=reply_to, sender=self.sender_email, sender_name=sender_name)
|
| 146 |
return True
|
| 147 |
|
|
|
|
| 141 |
|
| 142 |
captured = {}
|
| 143 |
|
| 144 |
+
async def fake_send(self, to, subject, body, *, reply_to=None, sender_name=None, html=None):
|
| 145 |
captured.update(to=to, reply_to=reply_to, sender=self.sender_email, sender_name=sender_name)
|
| 146 |
return True
|
| 147 |
|