From 4ba496442555b8808941b7674b2081452417dfd5 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 23 Oct 2008 02:39:52 +0000 Subject: [PATCH] 2.4 callcounts of course go up for no apparent reason --- test/profiling/compiler.py | 2 +- test/profiling/zoomark.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/profiling/compiler.py b/test/profiling/compiler.py index 9a09814987..501f8878d1 100644 --- a/test/profiling/compiler.py +++ b/test/profiling/compiler.py @@ -23,7 +23,7 @@ class CompileTest(TestBase, AssertsExecutionResults): def test_update(self): t1.update().compile() - @profiling.function_call_count(211, versions={'2.4':131}) + @profiling.function_call_count(211, versions={'2.4':141}) def test_select(self): s = select([t1], t1.c.c2==t2.c.c1) s.compile() diff --git a/test/profiling/zoomark.py b/test/profiling/zoomark.py index f73a7882a8..6cf0771c4d 100644 --- a/test/profiling/zoomark.py +++ b/test/profiling/zoomark.py @@ -328,7 +328,7 @@ class ZooMarkTest(TestBase): def test_profile_1a_populate(self): self.test_baseline_1a_populate() - @profiling.function_call_count(322, {'2.4': 213}) + @profiling.function_call_count(322, {'2.4': 202}) def test_profile_2_insert(self): self.test_baseline_2_insert() @@ -340,7 +340,7 @@ class ZooMarkTest(TestBase): def test_profile_4_expressions(self): self.test_baseline_4_expressions() - @profiling.function_call_count(1523, {'2.4': 1032}) + @profiling.function_call_count(1523, {'2.4': 1084}) def test_profile_5_aggregates(self): self.test_baseline_5_aggregates() -- 2.47.3