]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix some profiles for 2.4
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 6 Aug 2009 22:37:38 +0000 (22:37 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 6 Aug 2009 22:37:38 +0000 (22:37 +0000)
test/aaa_profiling/test_compiler.py
test/aaa_profiling/test_pool.py

index 79ae09b0544b366702dc38845cf66d72ac9384f3..1c06d828602806492c42fad896cf09abcbdc8e0f 100644 (file)
@@ -15,7 +15,7 @@ class CompileTest(TestBase, AssertsExecutionResults):
             Column('c1', Integer, primary_key=True),
             Column('c2', String(30)))
 
-    @profiling.function_call_count(72, {'2.4': 42, '3.0':77})
+    @profiling.function_call_count(72, {'2.4': 45, '3.0':77})
     def test_insert(self):
         t1.insert().compile()
 
index 6ae3edc989ddb33e9b93dae2acfe150f186f51ac..0cd60b049ff9e5e4323523ba2a01aaac30897e69 100644 (file)
@@ -18,7 +18,7 @@ class QueuePoolTest(TestBase, AssertsExecutionResults):
                          use_threadlocal=True)
 
 
-    @profiling.function_call_count(54, {'2.4': 38, '3.0':57})
+    @profiling.function_call_count(54, {'2.4': 36, '3.0':57})
     def test_first_connect(self):
         conn = pool.connect()