mirror of
https://github.com/datafolklabs/cement.git
synced 2026-02-06 09:37:26 +00:00
fix(ext.smtp): fix test related to mailpit api update
This commit is contained in:
parent
3ee6b5157b
commit
bfb3b8c01b
@ -64,8 +64,8 @@ def test_smtp_send(rando):
|
||||
assert msg['To'][0]['Address'] == f'to-{rando}@localhost'
|
||||
assert msg['Subject'] == f'UNIT TEST > {rando}'
|
||||
assert msg['Attachments'] == 0
|
||||
assert msg['Cc'] == []
|
||||
assert msg['Bcc'] == []
|
||||
assert msg['Cc'] in [None, []]
|
||||
assert msg['Bcc'] in [None, []]
|
||||
|
||||
delete_msg(msg['ID'])
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user