From 0a6f79561517fb5a601ad18831aee70de2d14d00 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 16 Dec 2010 21:44:48 -0500 Subject: [PATCH] - callcounts --- test/aaa_profiling/test_orm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.47.3