From: Mike Bayer Date: Wed, 13 Aug 2008 22:51:27 +0000 (+0000) Subject: adjust counts for 2.4 based on buildbot observation, remove 2.3 counts X-Git-Tag: rel_0_5rc1~68 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=282313ced65209354b6b61b72bde0e8be179bcea;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git adjust counts for 2.4 based on buildbot observation, remove 2.3 counts --- diff --git a/test/profiling/pool.py b/test/profiling/pool.py index 72c4b03e44..f3f69222c0 100644 --- a/test/profiling/pool.py +++ b/test/profiling/pool.py @@ -16,7 +16,7 @@ class QueuePoolTest(TestBase, AssertsExecutionResults): use_threadlocal=True) - @profiling.function_call_count(54, {'2.3': 42, '2.4': 43}) + @profiling.function_call_count(54, {'2.4': 38}) def test_first_connect(self): conn = pool.connect() @@ -24,7 +24,7 @@ class QueuePoolTest(TestBase, AssertsExecutionResults): conn = pool.connect() conn.close() - @profiling.function_call_count(31, {'2.3': 26, '2.4': 26}) + @profiling.function_call_count(31, {'2.4': 21}) def go(): conn2 = pool.connect() return conn2 @@ -33,7 +33,7 @@ class QueuePoolTest(TestBase, AssertsExecutionResults): def test_second_samethread_connect(self): conn = pool.connect() - @profiling.function_call_count(5, {'2.3': 4, '2.4': 4}) + @profiling.function_call_count(5, {'2.4': 3}) def go(): return pool.connect() c2 = go()