summaryrefslogtreecommitdiff
path: root/tests/unit/mail
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/mail')
-rw-r--r--tests/unit/mail/outgoing/test_service.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/unit/mail/outgoing/test_service.py b/tests/unit/mail/outgoing/test_service.py
index 9200397b..7b6df847 100644
--- a/tests/unit/mail/outgoing/test_service.py
+++ b/tests/unit/mail/outgoing/test_service.py
@@ -36,7 +36,6 @@ class TestService(unittest.TestCase):
def test_send_error_bounces_if_bouncer_is_provided(self):
bouncer = MagicMock()
outgoing_mail = OutgoingMail(self.from_address, self.keymanager,
- self.cert, self.key, self.host, self.port,
bouncer)
failure = Failure(exc_value=Exception())
@@ -48,7 +47,6 @@ class TestService(unittest.TestCase):
def test_send_error_raises_exception_if_there_is_no_bouncer(self):
bouncer = None
outgoing_mail = OutgoingMail(self.from_address, self.keymanager,
- self.cert, self.key, self.host, self.port,
bouncer)
failure = Failure(exc_value=Exception('smtp error'))