]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
assert timeout is 3 seconds, not 2
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 20 Jul 2007 15:41:42 +0000 (15:41 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 20 Jul 2007 15:41:42 +0000 (15:41 +0000)
test/engine/pool.py

index 3ae6fa2e1373d0f66f8c1e4c5fdf65974a8d183f..85e9d59fd8720dade0098d0c2d690d013d638507 100644 (file)
@@ -160,7 +160,7 @@ class PoolTest(PersistTest):
         print timeouts
         assert len(timeouts) > 0
         for t in timeouts:
-            assert abs(t - 2) < 1
+            assert abs(t - 3) < 1
         
     def _test_overflow(self, thread_count, max_overflow):
         def creator():