From: Mike Bayer Date: Sat, 19 Feb 2011 02:32:39 +0000 (-0500) Subject: - pulling out the PG type impls in create table knocked the counts out a bit (I am... X-Git-Tag: rel_0_7b2~1^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=429227fbaedd6fc74babac83b87f112199d21159;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - pulling out the PG type impls in create table knocked the counts out a bit (I am assuming/guessing). --- diff --git a/test/aaa_profiling/test_zoomark.py b/test/aaa_profiling/test_zoomark.py index d798c48a6e..a201212b9e 100644 --- a/test/aaa_profiling/test_zoomark.py +++ b/test/aaa_profiling/test_zoomark.py @@ -358,7 +358,7 @@ class ZooMarkTest(TestBase): metadata = MetaData(engine) engine.connect() - @profiling.function_call_count(3266, {'2.4': 1711}) + @profiling.function_call_count(3599, {'2.4': 1711}) def test_profile_1_create_tables(self): self.test_baseline_1_create_tables() diff --git a/test/aaa_profiling/test_zoomark_orm.py b/test/aaa_profiling/test_zoomark_orm.py index ee0d59b2c9..8479b7a40f 100644 --- a/test/aaa_profiling/test_zoomark_orm.py +++ b/test/aaa_profiling/test_zoomark_orm.py @@ -330,11 +330,11 @@ class ZooMarkTest(TestBase): session = sessionmaker()() engine.connect() - @profiling.function_call_count(4912) + @profiling.function_call_count(5245) def test_profile_1_create_tables(self): self.test_baseline_1_create_tables() - @profiling.function_call_count(6324, {'2.7+cextension':5992, '2.6+cextension':5992}) + @profiling.function_call_count(5786, {'2.7+cextension':5992, '2.6+cextension':5992}) def test_profile_1a_populate(self): self.test_baseline_1a_populate()