summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarry Warsaw2016-11-24 11:01:34 -0500
committerBarry Warsaw2016-11-24 11:54:45 -0500
commit6335abb114101528bd3d0227e5a629cc1ee78788 (patch)
treebc9fa6c9272b9eab1872940cb3f5c8734b8c3d92
parent1b3dd0bf6a9adc5fbd52aaff583e11a26eb0b12d (diff)
downloadmailman-6335abb114101528bd3d0227e5a629cc1ee78788.tar.gz
mailman-6335abb114101528bd3d0227e5a629cc1ee78788.tar.zst
mailman-6335abb114101528bd3d0227e5a629cc1ee78788.zip
-rw-r--r--src/mailman/runners/tests/test_owner.py2
-rw-r--r--src/mailman/testing/mta.py4
2 files changed, 1 insertions, 5 deletions
diff --git a/src/mailman/runners/tests/test_owner.py b/src/mailman/runners/tests/test_owner.py
index 1aa430b28..c95833932 100644
--- a/src/mailman/runners/tests/test_owner.py
+++ b/src/mailman/runners/tests/test_owner.py
@@ -113,7 +113,7 @@ Can you help me?
# All three messages will have two X-MailFrom headers. One is added
# by the LMTP server accepting Zuzu's original message, and will
# contain her posting address, i.e. zuzu@example.com. The second one
- # is added by the lazr.smtptest server that accepts Mailman's VERP'd
+ # is added by the aiosmtpd server that accepts Mailman's VERP'd
# message to the individual recipient. By verifying both, we prove
# that Zuzu sent the original message, and that Mailman is VERP'ing
# the copy to all the owners.
diff --git a/src/mailman/testing/mta.py b/src/mailman/testing/mta.py
index f7a6a9806..129ed1d1f 100644
--- a/src/mailman/testing/mta.py
+++ b/src/mailman/testing/mta.py
@@ -18,7 +18,6 @@
"""Fake MTA for testing purposes."""
import asyncio
-import logging
import smtplib
from aiosmtpd.controller import Controller
@@ -30,9 +29,6 @@ from queue import Empty, Queue
from zope.interface import implementer
-log = logging.getLogger('lazr.smtptest')
-
-
@public
@implementer(IMailTransportAgentLifecycle)
class FakeMTA: