summaryrefslogtreecommitdiff
path: root/test/profiling
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2008-10-18 18:25:21 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2008-10-18 18:25:21 +0000
commitedec6707ecf5c858642b081c02c26800b697bfd7 (patch)
treed88c61ccb3d2169de3aa1fda72a5cfb91a41bb02 /test/profiling
parenta20222fc22059df30b09b49621a784b54919613a (diff)
downloadsqlalchemy-edec6707ecf5c858642b081c02c26800b697bfd7.tar.gz
call count still goes to 131 for 2.4 despite the removal of ~12 lines from visit_select()
Diffstat (limited to 'test/profiling')
-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 b37b63297..90d8c6b24 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':122})
+ @profiling.function_call_count(228, versions={'2.3': 153, '2.4':131})
def test_select(self):
s = select([t1], t1.c.c2==t2.c.c1)
s.compile()