summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2008-08-13 22:51:27 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2008-08-13 22:51:27 +0000
commit282313ced65209354b6b61b72bde0e8be179bcea (patch)
treed177efbb515c8dd974eb0af288b524a14736e0f8 /test
parent10aeb7346d58e5fb1fc762aa7a44574fd745b9c1 (diff)
downloadsqlalchemy-282313ced65209354b6b61b72bde0e8be179bcea.tar.gz
adjust counts for 2.4 based on buildbot observation, remove 2.3 counts
Diffstat (limited to 'test')
-rw-r--r--test/profiling/pool.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/profiling/pool.py b/test/profiling/pool.py
index 72c4b03e4..f3f69222c 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()