diff options
Diffstat (limited to 'service/test/adapter/pixelated_mail_sender_test.py')
-rw-r--r-- | service/test/adapter/pixelated_mail_sender_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/adapter/pixelated_mail_sender_test.py b/service/test/adapter/pixelated_mail_sender_test.py index aadeaeab..4bac327c 100644 --- a/service/test/adapter/pixelated_mail_sender_test.py +++ b/service/test/adapter/pixelated_mail_sender_test.py @@ -33,7 +33,7 @@ class PixelatedMailSenderTest(unittest.TestCase): mail_dict['header']['bcc'] = ['bcc@pixelated.org', 'anotherbcc@pixelated.org'] mail = PixelatedMail.from_dict(mail_dict) - mail.to_smtp_format = lambda _from: "mail as smtp string" + mail.to_smtp_format = lambda : "mail as smtp string" self.mail_sender.sendmail(mail) |