From: Mike Bayer Date: Thu, 23 Oct 2008 02:39:52 +0000 (+0000) Subject: 2.4 callcounts of course go up for no apparent reason X-Git-Tag: rel_0_5rc3~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ba496442555b8808941b7674b2081452417dfd5;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git 2.4 callcounts of course go up for no apparent reason --- 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()