From: Mike Bayer Date: Fri, 23 Oct 2009 21:30:02 +0000 (+0000) Subject: update counts for 2.4 X-Git-Tag: rel_0_6beta1~230 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e8b1639f82547b1f6ba3a14aa9bfeb7b505cb91;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git update counts for 2.4 --- diff --git a/test/aaa_profiling/test_compiler.py b/test/aaa_profiling/test_compiler.py index d3cb65db96..0232ae15db 100644 --- a/test/aaa_profiling/test_compiler.py +++ b/test/aaa_profiling/test_compiler.py @@ -15,11 +15,11 @@ class CompileTest(TestBase, AssertsExecutionResults): Column('c1', Integer, primary_key=True), Column('c2', String(30))) - @profiling.function_call_count(72, {'2.4': 45, '3.0':77, '3.1':77}) + @profiling.function_call_count(72, {'2.4': 49, '3.0':77, '3.1':77}) def test_insert(self): t1.insert().compile() - @profiling.function_call_count(72, {'2.4': 45}) + @profiling.function_call_count(72, {'2.4': 50}) def test_update(self): t1.update().compile()