]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- callcounts
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 17 Dec 2010 02:44:48 +0000 (21:44 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 17 Dec 2010 02:44:48 +0000 (21:44 -0500)
test/aaa_profiling/test_orm.py

index 2995c35642d11b23ad2d8e648020fedb800bef8b..8a92ec07ce8b0ded20f1e6c96ab4d9be2f734d60 100644 (file)
@@ -54,7 +54,7 @@ class MergeTest(_base.MappedTest):
         # bigger operation so using a small variance
 
         @profiling.function_call_count(86, variance=0.05,
-                versions={'2.4': 68, '2.5':94, '3': 89})
+                versions={'2.4': 64, '2.5':94, '3': 89})
         def go():
             return sess2.merge(p1, load=False)
         p2 = go()
@@ -172,7 +172,7 @@ class LoadManyToOneFromIdentityTest(_base.MappedTest):
         parents = sess.query(Parent).all()
         children = sess.query(Child).all()
         
-        @profiling.function_call_count(17987, {'3':20978})
+        @profiling.function_call_count(17987, {'3':18987})
         def go():
             for p in parents:
                 p.child