diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-07-14 12:52:21 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-07-14 12:52:21 -0400 |
| commit | 9cab0f1f16a5f5e3b9dff9216911e244ce793544 (patch) | |
| tree | e3dcb6a704d67885a5cbb8725586dada397ea8e4 /test/aaa_profiling | |
| parent | 3eaedb38d306095c683900e7e4625be7f7bc91d2 (diff) | |
| download | sqlalchemy-9cab0f1f16a5f5e3b9dff9216911e244ce793544.tar.gz | |
move mapper-level UOW functionality straight into unitofwork also. there's
no need for this to be per-mapper. can't move dependency init
off of property though as this init needs to happen up front, added a test
to prove it.
Diffstat (limited to 'test/aaa_profiling')
| -rw-r--r-- | test/aaa_profiling/test_zoomark_orm.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/aaa_profiling/test_zoomark_orm.py b/test/aaa_profiling/test_zoomark_orm.py index 99b4d9224..0cc5f5fe0 100644 --- a/test/aaa_profiling/test_zoomark_orm.py +++ b/test/aaa_profiling/test_zoomark_orm.py @@ -335,12 +335,12 @@ class ZooMarkTest(fixtures.TestBase): def test_profile_1_create_tables(self): self.test_baseline_1_create_tables() - @profiling.function_call_count(5786, {'2.7+cextension':5683, + @profiling.function_call_count(5786, {'2.7+cextension':5683, '2.6+cextension':5992}) def test_profile_1a_populate(self): self.test_baseline_1a_populate() - @profiling.function_call_count(413, {'3.2':398}) + @profiling.function_call_count(388, {'3.2':378}) def test_profile_2_insert(self): self.test_baseline_2_insert() |
