diff options
| author | Barry Warsaw | 2016-11-24 11:01:34 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2016-11-24 11:01:34 -0500 |
| commit | ecb187b9bf851d39f964a90db9c68ab99ec37d3f (patch) | |
| tree | ffff9a2da87709839dfbe4cfa9b14c1896faea68 | |
| parent | e81e0e55c003c03b165dfd94b989ad2ce9249e1f (diff) | |
| download | mailman-ecb187b9bf851d39f964a90db9c68ab99ec37d3f.tar.gz mailman-ecb187b9bf851d39f964a90db9c68ab99ec37d3f.tar.zst mailman-ecb187b9bf851d39f964a90db9c68ab99ec37d3f.zip | |
Remove some unnecessary code and update a comment.
| -rw-r--r-- | src/mailman/runners/tests/test_owner.py | 2 | ||||
| -rw-r--r-- | src/mailman/testing/mta.py | 4 |
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: |
