summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/test/output/test_asynchat3
-rw-r--r--Lib/test/test_asynchat.py4
2 files changed, 3 insertions, 4 deletions
diff --git a/Lib/test/output/test_asynchat b/Lib/test/output/test_asynchat
deleted file mode 100644
index e2e67f3..0000000
--- 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 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 ')