]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fixed function call counts for 2.5 / 2.6
authorMichael Trier <mtrier@gmail.com>
Sun, 19 Apr 2009 21:23:32 +0000 (21:23 +0000)
committerMichael Trier <mtrier@gmail.com>
Sun, 19 Apr 2009 21:23:32 +0000 (21:23 +0000)
test/profiling/compiler.py

index 26260068a622948edd147c6557cf576444d50d17..78d7a711a2b11b3441aa772044835ce30a247da5 100644 (file)
@@ -15,15 +15,15 @@ class CompileTest(TestBase, AssertsExecutionResults):
             Column('c1', Integer, primary_key=True),
             Column('c2', String(30)))
 
-    @profiling.function_call_count(68, {'2.4': 42})
+    @profiling.function_call_count(72, {'2.4': 42})
     def test_insert(self):
         t1.insert().compile()
 
-    @profiling.function_call_count(68, {'2.4': 45})
+    @profiling.function_call_count(72, {'2.4': 45})
     def test_update(self):
         t1.update().compile()
 
-    @profiling.function_call_count(185, versions={'2.4':118})
+    @profiling.function_call_count(195, versions={'2.4':118})
     def test_select(self):
         s = select([t1], t1.c.c2==t2.c.c1)
         s.compile()