From fa938fee536275c1524581c4bf9ca277cbbf01db Mon Sep 17 00:00:00 2001 From: Michael Trier Date: Sun, 19 Apr 2009 21:23:32 +0000 Subject: [PATCH] Fixed function call counts for 2.5 / 2.6 --- test/profiling/compiler.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/profiling/compiler.py b/test/profiling/compiler.py index 26260068a6..78d7a711a2 100644 --- a/test/profiling/compiler.py +++ b/test/profiling/compiler.py @@ -15,15 +15,15 @@ class CompileTest(TestBase, AssertsExecutionResults): Column('c1', Integer, primary_key=True), Column('c2', String(30))) - @profiling.function_call_count(68, {'2.4': 42}) + @profiling.function_call_count(72, {'2.4': 42}) def test_insert(self): t1.insert().compile() - @profiling.function_call_count(68, {'2.4': 45}) + @profiling.function_call_count(72, {'2.4': 45}) def test_update(self): t1.update().compile() - @profiling.function_call_count(185, versions={'2.4':118}) + @profiling.function_call_count(195, versions={'2.4':118}) def test_select(self): s = select([t1], t1.c.c2==t2.c.c1) s.compile() -- 2.47.3