From: Mike Bayer Date: Fri, 17 Dec 2010 02:44:48 +0000 (-0500) Subject: - callcounts X-Git-Tag: rel_0_7b1~157^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a6f79561517fb5a601ad18831aee70de2d14d00;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - callcounts --- diff --git a/test/aaa_profiling/test_orm.py b/test/aaa_profiling/test_orm.py index 2995c35642..8a92ec07ce 100644 --- a/test/aaa_profiling/test_orm.py +++ b/test/aaa_profiling/test_orm.py @@ -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