diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_smtpd.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_smtpd.py b/Lib/test/test_smtpd.py index 9d168c7..3d55bb2 100644 --- a/Lib/test/test_smtpd.py +++ b/Lib/test/test_smtpd.py @@ -45,6 +45,7 @@ class SMTPDServerTest(TestCase): self.assertRaises(NotImplementedError, write_line, b'spam\r\n.\r\n') def tearDown(self): + asyncore.close_all() asyncore.socket = smtpd.socket = socket @@ -57,6 +58,7 @@ class SMTPDChannelTest(TestCase): self.channel = smtpd.SMTPChannel(self.server, conn, addr) def tearDown(self): + asyncore.close_all() asyncore.socket = smtpd.socket = socket def write_line(self, line): |