Changeset 1459
- Timestamp:
- 11/30/06 11:33:59
- Files:
-
- trunk/cherrypy/test/test_conn.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/test/test_conn.py
r1406 r1459 6 6 import sys 7 7 import time 8 timeout = 0.1 9 8 10 9 11 import cherrypy … … 130 132 131 133 try: 132 httpserver.timeout = 0.1134 httpserver.timeout = timeout 133 135 self.PROTOCOL = "HTTP/1.1" 134 136 … … 160 162 161 163 # Wait for our socket timeout 162 time.sleep( 0.2)164 time.sleep(timeout * 2) 163 165 164 166 # Make another request on the same socket, which should error

