From: Ned Deily Date: Sun, 18 Jan 2015 01:31:13 +0000 (-0800) Subject: Issue #23211: Fix patch for 3.4 differences. X-Git-Tag: v3.4.3rc1~115 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3bbb37e09b30baf9ed5926cc765fee1175fb1828;p=python Issue #23211: Fix patch for 3.4 differences. --- diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 4ef8c2847c..54be2176a8 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -41,7 +41,7 @@ import sys import tempfile from test.script_helper import assert_python_ok from test.support import (captured_stdout, run_with_locale, run_unittest, - patch, requires_zlib, TestHandler, Matcher) + patch, requires_zlib, TestHandler, Matcher, HOST) import textwrap import time import unittest @@ -930,10 +930,10 @@ class SMTPHandlerTest(BaseTest): TIMEOUT = 8.0 def test_basic(self): sockmap = {} - server = TestSMTPServer((support.HOST, 0), self.process_message, 0.001, + server = TestSMTPServer((HOST, 0), self.process_message, 0.001, sockmap) server.start() - addr = (support.HOST, server.port) + addr = (HOST, server.port) h = logging.handlers.SMTPHandler(addr, 'me', 'you', 'Log', timeout=self.TIMEOUT) self.assertEqual(h.toaddrs, ['you'])