]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
call count still goes to 131 for 2.4 despite the removal of ~12 lines from visit_select()
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 18 Oct 2008 18:25:21 +0000 (18:25 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 18 Oct 2008 18:25:21 +0000 (18:25 +0000)
test/profiling/compiler.py

index b37b63297d117bfcf6df187d454f122ebdedbd25..90d8c6b24ef6da5e1e21300dcd9abf8ca98385c3 100644 (file)
@@ -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()