Merged revisions 85423 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r85423 | antoine.pitrou | 2010-10-13 19:14:16 +0200 (mer., 13 oct. 2010) | 3 lines

  Protect test_smtpnet against connection failures
........
This commit is contained in:
Antoine Pitrou 2010-10-13 17:20:54 +00:00
parent bcb61956e3
commit 9e1ef1a11d
1 changed files with 2 additions and 1 deletions

View File

@ -12,7 +12,8 @@ class SmtpSSLTest(unittest.TestCase):
def test_connect(self):
test_support.get_attribute(smtplib, 'SMTP_SSL')
server = smtplib.SMTP_SSL(self.testServer, self.remotePort)
with test_support.transient_internet(self.testServer):
server = smtplib.SMTP_SSL(self.testServer, self.remotePort)
server.ehlo()
server.quit()