From 4a6afd469fad170868554bf28578849bf3dfd5dd Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 9 May 2008 16:34:10 +0000 Subject: r4695 merged to trunk; trunk now becomes 0.5. 0.4 development continues at /sqlalchemy/branches/rel_0_4 --- test/profiling/compiler.py | 4 ++-- test/profiling/zoomark.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'test/profiling') diff --git a/test/profiling/compiler.py b/test/profiling/compiler.py index 4e1111aa2..cd0a29ee3 100644 --- a/test/profiling/compiler.py +++ b/test/profiling/compiler.py @@ -15,11 +15,11 @@ class CompileTest(TestBase, AssertsExecutionResults): Column('c1', Integer, primary_key=True), Column('c2', String(30))) - @profiling.function_call_count(74, {'2.3': 44, '2.4': 42}) + @profiling.function_call_count(67, {'2.3': 44, '2.4': 42}) def test_insert(self): t1.insert().compile() - @profiling.function_call_count(75, {'2.3': 47, '2.4': 42}) + @profiling.function_call_count(68, {'2.3': 47, '2.4': 42}) def test_update(self): t1.update().compile() diff --git a/test/profiling/zoomark.py b/test/profiling/zoomark.py index 0994b5d4b..cdf663a4e 100644 --- a/test/profiling/zoomark.py +++ b/test/profiling/zoomark.py @@ -332,7 +332,7 @@ class ZooMarkTest(TestBase): def test_profile_2_insert(self): self.test_baseline_2_insert() - @profiling.function_call_count(4923, {'2.4': 2557}) + @profiling.function_call_count(4662, {'2.4': 2557}) def test_profile_3_properties(self): self.test_baseline_3_properties() @@ -344,7 +344,7 @@ class ZooMarkTest(TestBase): def test_profile_5_aggregates(self): self.test_baseline_5_aggregates() - @profiling.function_call_count(1988, {'2.4': 1048}) + @profiling.function_call_count(1882, {'2.4': 1048}) def test_profile_6_editing(self): self.test_baseline_6_editing() -- cgit v1.2.1