From: Mike Bayer Date: Mon, 15 Feb 2010 18:59:21 +0000 (+0000) Subject: update call counts X-Git-Tag: rel_0_6beta2~183 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=563972b0ffcdfd583208bf7c541b1c102c8ec230;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git update call counts --- diff --git a/test/aaa_profiling/test_orm.py b/test/aaa_profiling/test_orm.py index 3027d4a50c..3d32bb0117 100644 --- a/test/aaa_profiling/test_orm.py +++ b/test/aaa_profiling/test_orm.py @@ -83,7 +83,8 @@ class MergeTest(_base.MappedTest): # preloading of collection took this down from 1728 # to 1192 using sqlite3 - @profiling.function_call_count(1192) + # the C extension took it back up to approx. 1257 (py2.6) + @profiling.function_call_count(1257, versions={'2.4':807}) def go(): p2 = sess2.merge(p1) go()