From 43dbfccf4d76c9f94dc409b994921c477b0d4776 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 6 Jul 2010 17:09:42 -0400 Subject: [PATCH] up the variance on these as the call counts are very low and things wiggle around even between 2.6.4/2.6.5 --- test/aaa_profiling/test_pool.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/aaa_profiling/test_pool.py b/test/aaa_profiling/test_pool.py index c4f5191fec..bc3c12d57f 100644 --- a/test/aaa_profiling/test_pool.py +++ b/test/aaa_profiling/test_pool.py @@ -20,7 +20,8 @@ class QueuePoolTest(TestBase, AssertsExecutionResults): @profiling.function_call_count(64, {'2.4': 42, '2.7':59, '2.7+cextension':59, - '3.0':65, '3.1':65}) + '3.0':65, '3.1':65}, + variance=.10) def test_first_connect(self): conn = pool.connect() @@ -29,7 +30,8 @@ class QueuePoolTest(TestBase, AssertsExecutionResults): conn.close() @profiling.function_call_count(32, {'2.4': 21, '2.7':29, - '2.7+cextension':29}) + '2.7+cextension':29}, + variance=.10) def go(): conn2 = pool.connect() return conn2 -- 2.47.3