victor34593993 commited on
Commit
928c47a
·
verified ·
1 Parent(s): a7bad65

suite green

Browse files
Files changed (1) hide show
  1. 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