diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-05-09 16:34:10 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-05-09 16:34:10 +0000 |
| commit | 4a6afd469fad170868554bf28578849bf3dfd5dd (patch) | |
| tree | b396edc33d567ae19dd244e87137296450467725 /test/profiling | |
| parent | 46b7c9dc57a38d5b9e44a4723dad2ad8ec57baca (diff) | |
| download | sqlalchemy-4a6afd469fad170868554bf28578849bf3dfd5dd.tar.gz | |
r4695 merged to trunk; trunk now becomes 0.5.
0.4 development continues at /sqlalchemy/branches/rel_0_4
Diffstat (limited to 'test/profiling')
| -rw-r--r-- | test/profiling/compiler.py | 4 | ||||
| -rw-r--r-- | test/profiling/zoomark.py | 4 |
2 files changed, 4 insertions, 4 deletions
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() |
