Skip to content

Commit

Permalink
Fixed typo in assertion.
Browse files Browse the repository at this point in the history
  • Loading branch information
thedrow committed Jul 14, 2015
1 parent 7566d2d commit a8621d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion celery/tests/utils/test_mail.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def test_send(self, SMTP):
mailer = Mailer(use_ssl=False, use_tls=False)
mailer._send(msg)

client.sendmail.assert_called_With(msg.sender, msg.to, str(msg))
client.sendmail.assert_called_with(msg.sender, msg.to, str(msg))

client.quit.side_effect = SSLError()
mailer._send(msg)
Expand Down

0 comments on commit a8621d6

Please sign in to comment.