summaryrefslogtreecommitdiff
path: root/test/profiling/compiler.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2008-11-07 17:08:23 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2008-11-07 17:08:23 +0000
commit17b758faed4dfdc7973d0c0b861ece40de10b101 (patch)
tree371bffbf27b725a9c1ade23c33546869e7b381f7 /test/profiling/compiler.py
parentabf9bef1a9f548a373f05b8a328d815dd28dda30 (diff)
downloadsqlalchemy-17b758faed4dfdc7973d0c0b861ece40de10b101.tar.gz
avoid some often unnecessary method calls. i think we might have squeezed all we're going to squeeze out of compiler at this point.
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 5be8c0f8e..2f1cbad59 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(195, versions={'2.4':133})
+ @profiling.function_call_count(185, versions={'2.4':133})
def test_select(self):
s = select([t1], t1.c.c2==t2.c.c1)
s.compile()