summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asynchat.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_asynchat.py')
-rw-r--r--Lib/test/test_asynchat.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_asynchat.py b/Lib/test/test_asynchat.py
index d10e389..f93587a 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 ')