summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBarry Warsaw2016-11-24 11:24:18 -0500
committerBarry Warsaw2016-11-24 11:54:45 -0500
commit74b015579947b92f0bfedaddbf3d7acc000e2ab7 (patch)
tree871e95901de28cc1e761f98794ca06878d36a8f5 /src
parent6335abb114101528bd3d0227e5a629cc1ee78788 (diff)
downloadmailman-74b015579947b92f0bfedaddbf3d7acc000e2ab7.tar.gz
mailman-74b015579947b92f0bfedaddbf3d7acc000e2ab7.tar.zst
mailman-74b015579947b92f0bfedaddbf3d7acc000e2ab7.zip
Diffstat (limited to 'src')
-rw-r--r--src/mailman/testing/mta.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/mailman/testing/mta.py b/src/mailman/testing/mta.py
index 129ed1d1f..8b273d792 100644
--- a/src/mailman/testing/mta.py
+++ b/src/mailman/testing/mta.py
@@ -180,18 +180,6 @@ class ConnectionCountingSMTP(SMTP):
# the exception we expect smtplib.SMTP to raise.
yield from self.push('%d Error: SMTPResponseException' % code)
- def found_terminator(self):
- # Are we're waiting for the AUTH challenge response?
- if self._waiting_for_auth_response:
- line = self._emptystring.join(self.received_lines)
- self._auth_response = line
- self._waiting_for_auth_response = False
- self.received_lines = []
- # Now check to see if they authenticated correctly.
- self._check_auth(line)
- else:
- super().found_terminator()
-
import socket
import asyncio