bpo-31234: test_httpservers joins the server thread (#3188)

This commit is contained in:
Victor Stinner 2017-08-22 18:05:07 +02:00 committed by GitHub
parent bc61315377
commit 830d7d2936

View file

@ -56,6 +56,7 @@ class TestServerThread(threading.Thread):
def stop(self):
self.server.shutdown()
self.join()
class BaseTestCase(unittest.TestCase):