From 9dd05715de7e673b5ab4af8eb84b719f8d5e66ff Mon Sep 17 00:00:00 2001 From: Michael Trier Date: Mon, 20 Oct 2008 16:24:30 +0000 Subject: [PATCH] Corrected profiling expected call count down to 42 for the test_insert test. --- test/profiling/compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/profiling/compiler.py b/test/profiling/compiler.py index 86f1c058f3..452940e099 100644 --- a/test/profiling/compiler.py +++ b/test/profiling/compiler.py @@ -15,7 +15,7 @@ class CompileTest(TestBase, AssertsExecutionResults): Column('c1', Integer, primary_key=True), Column('c2', String(30))) - @profiling.function_call_count(72, {'2.4': 46}) + @profiling.function_call_count(72, {'2.4': 42}) def test_insert(self): t1.insert().compile() -- 2.47.3