Issue #14644: Increased default timeout for SMTPHandler. Note: last commit message referred to the wrong issue number.

This commit is contained in:
Vinay Sajip 2012-04-22 18:19:50 +01:00
parent 26308da174
commit 4c3f47896e
1 changed files with 1 additions and 1 deletions

View File

@ -930,7 +930,7 @@ class SMTPHandlerTest(BaseTest):
sockmap)
server.start()
addr = ('localhost', server.port)
h = logging.handlers.SMTPHandler(addr, 'me', 'you', 'Log')
h = logging.handlers.SMTPHandler(addr, 'me', 'you', 'Log', timeout=5.0)
self.assertEqual(h.toaddrs, ['you'])
self.messages = []
r = logging.makeLogRecord({'msg': 'Hello'})