From 4ad24aee814b04e4e037ed66daa46a40c62b6d2c Mon Sep 17 00:00:00 2001 From: Ryan Williams Date: Mon, 24 May 2010 20:20:47 -0700 Subject: [PATCH] Constant tweakage. --- tests/patcher_psycopg_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/patcher_psycopg_test.py b/tests/patcher_psycopg_test.py index 47a3044..41ca0d7 100644 --- a/tests/patcher_psycopg_test.py +++ b/tests/patcher_psycopg_test.py @@ -30,7 +30,7 @@ def fetch(num, secs): f = eventlet.spawn(fetch, 2, 1) t = eventlet.spawn(tick, 2, 100) f.wait() -assert count[0] > 150 +assert count[0] > 100, count[0] print "done" """