diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2009-10-24 20:36:44 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2009-10-24 20:36:44 +0000 |
| commit | fafbe57b308582bd19e565eef87efff726dab224 (patch) | |
| tree | 05c86ef0b3523dd8f1f77911699977bd8bb22b27 | |
| parent | 52b1ace6768a7f00b411d5f8b86ad8d1f84666b8 (diff) | |
| download | sqlalchemy-fafbe57b308582bd19e565eef87efff726dab224.tar.gz | |
fix some 2.4 callcounts
| -rw-r--r-- | test/aaa_profiling/test_resultset.py | 4 | ||||
| -rw-r--r-- | test/aaa_profiling/test_zoomark.py | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/test/aaa_profiling/test_resultset.py b/test/aaa_profiling/test_resultset.py index d67f9560c..4a675ce0e 100644 --- a/test/aaa_profiling/test_resultset.py +++ b/test/aaa_profiling/test_resultset.py @@ -29,11 +29,11 @@ class ResultSetTest(TestBase, AssertsExecutionResults): def teardown(self): metadata.drop_all() - @profiling.function_call_count(14416) + @profiling.function_call_count(14416, versions={'2.4':13214}) def test_string(self): [tuple(row) for row in t.select().execute().fetchall()] - @profiling.function_call_count(44406) + @profiling.function_call_count(44406, versions={'2.4':33224}) def test_unicode(self): [tuple(row) for row in t2.select().execute().fetchall()] diff --git a/test/aaa_profiling/test_zoomark.py b/test/aaa_profiling/test_zoomark.py index 75419c7a0..ff5801c89 100644 --- a/test/aaa_profiling/test_zoomark.py +++ b/test/aaa_profiling/test_zoomark.py @@ -335,11 +335,11 @@ class ZooMarkTest(TestBase): def test_profile_3_properties(self): self.test_baseline_3_properties() - @profiling.function_call_count(14752, {'2.4': 9950}) + @profiling.function_call_count(14752, {'2.4': 8434}) def test_profile_4_expressions(self): self.test_baseline_4_expressions() - @profiling.function_call_count(1347, {'2.4': 1001}) + @profiling.function_call_count(1347, {'2.4': 901}) def test_profile_5_aggregates(self): self.test_baseline_5_aggregates() @@ -347,7 +347,7 @@ class ZooMarkTest(TestBase): def test_profile_6_editing(self): self.test_baseline_6_editing() - @profiling.function_call_count(2994, {'2.4': 1998}) + @profiling.function_call_count(2994, {'2.4': 1844}) def test_profile_7_multiview(self): self.test_baseline_7_multiview() |
