From: Mike Bayer Date: Mon, 5 Mar 2012 20:20:07 +0000 (-0500) Subject: callcount tweak X-Git-Tag: rel_0_7_6~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be71c73f614f9c316c0c02a98505a8c03d5ef788;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git callcount tweak --- diff --git a/test/aaa_profiling/test_compiler.py b/test/aaa_profiling/test_compiler.py index a7ce7a70b1..53df3b28ea 100644 --- a/test/aaa_profiling/test_compiler.py +++ b/test/aaa_profiling/test_compiler.py @@ -43,7 +43,7 @@ class CompileTest(fixtures.TestBase, AssertsExecutionResults): def test_update(self): t1.update().compile(dialect=self.dialect) - @profiling.function_call_count(versions={'2.6':117, '2.7':117, '3':118}) + @profiling.function_call_count(versions={'2.6':117, '2.7':117, '3':124}) def test_update_whereclause(self): t1.update().where(t1.c.c2==12).compile(dialect=self.dialect)