diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-08-22 16:05:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-22 16:05:07 (GMT) |
commit | 830d7d2936434ace113822294acce82f62cde41b (patch) | |
tree | adbd7fa537041484978f0ec317d9309c129d14fa /Lib | |
parent | bc61315377056fe362b744d9c44e17cd3178ce54 (diff) | |
download | cpython-830d7d2936434ace113822294acce82f62cde41b.zip cpython-830d7d2936434ace113822294acce82f62cde41b.tar.gz cpython-830d7d2936434ace113822294acce82f62cde41b.tar.bz2 |
bpo-31234: test_httpservers joins the server thread (#3188)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_httpservers.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py index fb4ae19..8cddcdc 100644 --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -56,6 +56,7 @@ class TestServerThread(threading.Thread): def stop(self): self.server.shutdown() + self.join() class BaseTestCase(unittest.TestCase): |