diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-04-02 15:07:06 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-04-02 15:07:06 +0000 |
commit | ac7d092ef0ea7ec43ecd808a20fa5923a6aaf4a3 (patch) | |
tree | 913e5bd3599f50ae006c8e064f0083647aecdb64 /test/profiling/compiler.py | |
parent | d8d3637389a49c42ce7cf6939ad51190508021c5 (diff) | |
download | sqlalchemy-ac7d092ef0ea7ec43ecd808a20fa5923a6aaf4a3.tar.gz |
slight function call reduction
Diffstat (limited to 'test/profiling/compiler.py')
-rw-r--r-- | test/profiling/compiler.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/profiling/compiler.py b/test/profiling/compiler.py index 23e199962..41da7e66d 100644 --- a/test/profiling/compiler.py +++ b/test/profiling/compiler.py @@ -23,8 +23,7 @@ class CompileTest(TestBase, AssertsExecutionResults): def test_update(self): t1.update().compile() - # TODO: this is alittle high - @profiling.function_call_count(130, versions={'2.3': 180, '2.4':140}) + @profiling.function_call_count(120, versions={'2.3': 180, '2.4':140}) def test_select(self): s = select([t1], t1.c.c2==t2.c.c1) s.compile() |