From: Mike Bayer Date: Sat, 18 Oct 2008 18:25:21 +0000 (+0000) Subject: call count still goes to 131 for 2.4 despite the removal of ~12 lines from visit_select() X-Git-Tag: rel_0_5rc3~69 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=edec6707ecf5c858642b081c02c26800b697bfd7;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git call count still goes to 131 for 2.4 despite the removal of ~12 lines from visit_select() --- diff --git a/test/profiling/compiler.py b/test/profiling/compiler.py index b37b63297d..90d8c6b24e 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()