From: Mike Bayer Date: Tue, 16 Feb 2010 23:42:06 +0000 (+0000) Subject: callcounts X-Git-Tag: rel_0_6beta2~172 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=874bd42726d94f9c3afa96e86193aab054845429;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git callcounts --- diff --git a/test/aaa_profiling/test_compiler.py b/test/aaa_profiling/test_compiler.py index ffd69f97d3..4bb7b5bdeb 100644 --- a/test/aaa_profiling/test_compiler.py +++ b/test/aaa_profiling/test_compiler.py @@ -15,15 +15,15 @@ class CompileTest(TestBase, AssertsExecutionResults): Column('c1', Integer, primary_key=True), Column('c2', String(30))) - @profiling.function_call_count(72, {'2.4': 49, '3.0':77, '3.1':77}) + @profiling.function_call_count(69, {'2.4': 44, '3.0':77, '3.1':77}) def test_insert(self): t1.insert().compile() - @profiling.function_call_count(72, {'2.4': 50}) + @profiling.function_call_count(69, {'2.4': 45}) def test_update(self): t1.update().compile() - @profiling.function_call_count(128, {'2.4': 90}) + @profiling.function_call_count(122, {'2.4': 81}) def test_update_whereclause(self): t1.update().where(t1.c.c2==12).compile()