mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
Protect test_smtpnet against connection failures
This commit is contained in:
parent
d4958c2832
commit
6003ff7633
1 changed files with 2 additions and 1 deletions
|
|
@ -12,7 +12,8 @@ class SmtpSSLTest(unittest.TestCase):
|
|||
|
||||
def test_connect(self):
|
||||
support.get_attribute(smtplib, 'SMTP_SSL')
|
||||
server = smtplib.SMTP_SSL(self.testServer, self.remotePort)
|
||||
with support.transient_internet(self.testServer):
|
||||
server = smtplib.SMTP_SSL(self.testServer, self.remotePort)
|
||||
server.ehlo()
|
||||
server.quit()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue