summaryrefslogtreecommitdiff
path: root/test/profiling/compiler.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2008-05-09 19:20:49 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2008-05-09 19:20:49 +0000
commit6840fc6bb635f78df85077beeaaca52d31836aff (patch)
treed165f49f262dca0dc349b5130fa5f91f8177e459 /test/profiling/compiler.py
parent84ec085d474f5f8029a52d7f6a24deda56bdfa87 (diff)
downloadsqlalchemy-6840fc6bb635f78df85077beeaaca52d31836aff.tar.gz
- more portable tests for eager/inheritance joins
- bumped 2.4 call count for profile test_select - don't need initialize_properties() during reentrant compile() call (for now)
Diffstat (limited to 'test/profiling/compiler.py')
-rw-r--r--test/profiling/compiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/profiling/compiler.py b/test/profiling/compiler.py
index cd0a29ee3..a62c63c6b 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(228, versions={'2.3': 153, '2.4':116})
+ @profiling.function_call_count(228, versions={'2.3': 153, '2.4':122})
def test_select(self):
s = select([t1], t1.c.c2==t2.c.c1)
s.compile()