diff --git a/Lib/test/output/test_asynchat b/Lib/test/output/test_asynchat deleted file mode 100644 index e2e67f3f959..00000000000 --- a/Lib/test/output/test_asynchat +++ /dev/null @@ -1,3 +0,0 @@ -test_asynchat -Connected -Received: 'hello world' diff --git a/Lib/test/test_asynchat.py b/Lib/test/test_asynchat.py index d10e389a55c..f93587acbef 100644 --- a/Lib/test/test_asynchat.py +++ b/Lib/test/test_asynchat.py @@ -6,7 +6,7 @@ import unittest from test import test_support HOST = "127.0.0.1" -PORT = 54321 +PORT = 54322 class echo_server(threading.Thread): @@ -67,6 +67,7 @@ class TestAsynchat(unittest.TestCase): c.push("hello ") c.push("world\n") asyncore.loop() + s.join() self.assertEqual(c.contents, 'hello world') @@ -79,6 +80,7 @@ class TestAsynchat(unittest.TestCase): c.push("hello ") c.push("world\n") asyncore.loop() + s.join() self.assertEqual(c.contents, 'hello ')