From 2e8b1639f82547b1f6ba3a14aa9bfeb7b505cb91 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 23 Oct 2009 21:30:02 +0000 Subject: [PATCH] update counts for 2.4 --- test/aaa_profiling/test_compiler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() -- 2.47.2