]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
adjust counts for 2.4 based on buildbot observation, remove 2.3 counts
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 13 Aug 2008 22:51:27 +0000 (22:51 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 13 Aug 2008 22:51:27 +0000 (22:51 +0000)
test/profiling/pool.py

index 72c4b03e442749edf334cf70a357614dfb4e7a50..f3f69222c0eeb7efbe76e931bd06195cf42bdcd1 100644 (file)
@@ -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()