From 874bd42726d94f9c3afa96e86193aab054845429 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 16 Feb 2010 23:42:06 +0000 Subject: [PATCH] callcounts --- test/aaa_profiling/test_compiler.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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() -- 2.47.3