[Zope3-checkins] CVS: Zope3/src/zope/fssync/tests -
test_network.py:1.9
Fred L. Drake, Jr.
fred at zope.com
Mon Sep 22 16:32:36 EDT 2003
Update of /cvs-repository/Zope3/src/zope/fssync/tests
In directory cvs.zope.org:/tmp/cvs-serv11846
Modified Files:
test_network.py
Log Message:
test_httpreq(): don't leave the dummy server thread sitting there;
make sure it's gone before we return from the test to avoid spew from
the new orphan-thread detector
=== Zope3/src/zope/fssync/tests/test_network.py 1.8 => 1.9 ===
--- Zope3/src/zope/fssync/tests/test_network.py:1.8 Sun Aug 17 02:09:00 2003
+++ Zope3/src/zope/fssync/tests/test_network.py Mon Sep 22 16:32:35 2003
@@ -166,6 +166,7 @@
self.assertRaises(Error, self.network.httpreq, "/xyzzy", "@@view")
finally:
svr.stop()
+ svr.join()
def test_slurptext_html(self):
fp = StringIO("<p>This is some\n\ntext.</p>\n")
More information about the Zope3-Checkins
mailing list