]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
callcounts
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 16 Feb 2010 23:42:06 +0000 (23:42 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 16 Feb 2010 23:42:06 +0000 (23:42 +0000)
test/aaa_profiling/test_compiler.py

index ffd69f97d31f6d914e2a63a227df98b1d5ef8e56..4bb7b5bdeb5ff5306e6ce299b085849239ae1cac 100644 (file)
@@ -15,15 +15,15 @@ class CompileTest(TestBase, AssertsExecutionResults):
             Column('c1', Integer, primary_key=True),
             Column('c2', String(30)))
 
-    @profiling.function_call_count(72, {'2.4': 49, '3.0':77, '3.1':77})
+    @profiling.function_call_count(69, {'2.4': 44, '3.0':77, '3.1':77})
     def test_insert(self):
         t1.insert().compile()
 
-    @profiling.function_call_count(72, {'2.4': 50})
+    @profiling.function_call_count(69, {'2.4': 45})
     def test_update(self):
         t1.update().compile()
 
-    @profiling.function_call_count(128, {'2.4': 90})
+    @profiling.function_call_count(122, {'2.4': 81})
     def test_update_whereclause(self):
         t1.update().where(t1.c.c2==12).compile()