summaryrefslogtreecommitdiff
path: root/test/profiling/compiler.py
diff options
context:
space:
mode:
authorMichael Trier <mtrier@gmail.com>2008-10-20 16:24:30 +0000
committerMichael Trier <mtrier@gmail.com>2008-10-20 16:24:30 +0000
commit9dd05715de7e673b5ab4af8eb84b719f8d5e66ff (patch)
treebb8005c093817f3ed5899ce89aff66bbab17a731 /test/profiling/compiler.py
parentc81c7ff3d59469cf6ceccbcf1593fd0563f0eaf3 (diff)
downloadsqlalchemy-9dd05715de7e673b5ab4af8eb84b719f8d5e66ff.tar.gz
Corrected profiling expected call count down to 42 for the test_insert test.
Diffstat (limited to 'test/profiling/compiler.py')
-rw-r--r--test/profiling/compiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/profiling/compiler.py b/test/profiling/compiler.py
index 86f1c058f..452940e09 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()