Sleeping in env_test for longer because thread startup is so very expensive on some platforms.

This commit is contained in:
Ryan Williams
2010-07-25 21:17:37 -07:00
parent d058d706f5
commit 683d4eeb39

View File

@@ -26,7 +26,7 @@ current = [0]
highwater = [0]
def count():
current[0] += 1
time.sleep(0.04)
time.sleep(0.1)
if current[0] > highwater[0]:
highwater[0] = current[0]
current[0] -= 1