From: Mike Bayer Date: Sun, 12 Dec 2010 20:35:21 +0000 (-0500) Subject: callcounts X-Git-Tag: rel_0_7b1~169 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b12caa18b5b05e30078bcd85f48c66cdd17965e7;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git callcounts --- diff --git a/test/aaa_profiling/test_orm.py b/test/aaa_profiling/test_orm.py index a5bdc6ad60..758086426d 100644 --- a/test/aaa_profiling/test_orm.py +++ b/test/aaa_profiling/test_orm.py @@ -62,7 +62,7 @@ class MergeTest(_base.MappedTest): # third call, merge object already present. almost no calls. @profiling.function_call_count(11, variance=0.05, - versions={'2.4': 8, '2.5':15, '3': 13}) + versions={'2.4': 8, '2.5':15, '3': 12}) def go(): return sess2.merge(p2, load=False) p3 = go() @@ -172,7 +172,7 @@ class LoadManyToOneFromIdentityTest(_base.MappedTest): parents = sess.query(Parent).all() children = sess.query(Child).all() - @profiling.function_call_count(23979, {'2.5':28974}) + @profiling.function_call_count(23979, {'2.5':28974, '3':25978}) def go(): for p in parents: p.child