]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Corrected profiling expected call count down to 42 for the test_insert test.
authorMichael Trier <mtrier@gmail.com>
Mon, 20 Oct 2008 16:24:30 +0000 (16:24 +0000)
committerMichael Trier <mtrier@gmail.com>
Mon, 20 Oct 2008 16:24:30 +0000 (16:24 +0000)
test/profiling/compiler.py

index 86f1c058f30c8db3b025271e083e2aa8877bf1c7..452940e099b2d82c187f28a4fefe4805a136a321 100644 (file)
@@ -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()