[Zope3-checkins]
SVN: Zope3/trunk/src/zope/server/http/tests/test_httpserver.py
Fixed a function call thast caused many tests to fail with "-N 2"
Stephan Richter
srichter at cosmos.phy.tufts.edu
Sat Apr 9 09:23:13 EDT 2005
Log message for revision 29928:
Fixed a function call thast caused many tests to fail with "-N 2"
Changed:
U Zope3/trunk/src/zope/server/http/tests/test_httpserver.py
-=-
Modified: Zope3/trunk/src/zope/server/http/tests/test_httpserver.py
===================================================================
--- Zope3/trunk/src/zope/server/http/tests/test_httpserver.py 2005-04-09 08:52:18 UTC (rev 29927)
+++ Zope3/trunk/src/zope/server/http/tests/test_httpserver.py 2005-04-09 13:23:12 UTC (rev 29928)
@@ -81,7 +81,7 @@
if len(socket_map) != 1:
# Let sockets die off.
# XXX tests should be more careful to clear the socket map.
- asyncore.poll(0.1)
+ poll(0.1)
self.orig_map_size = len(socket_map)
self.hook_asyncore_error()
self.server = EchoHTTPServer(LOCALHOST, SERVER_PORT,
More information about the Zope3-Checkins
mailing list