summaryrefslogtreecommitdiff
path: root/test/aaa_profiling/test_compiler.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-11-22 18:05:05 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2011-11-22 18:05:05 -0500
commit4de3b28abce67a09dfde1cffd8a244b6542ae8c1 (patch)
treea5ec8ef126ce6dc82eff4e8d9e7393ac80dcbb77 /test/aaa_profiling/test_compiler.py
parent90b6ca30e430a06ed1d1696f3881ae72c6014ecd (diff)
downloadsqlalchemy-4de3b28abce67a09dfde1cffd8a244b6542ae8c1.tar.gz
fixes to actually get tests to pass
Diffstat (limited to 'test/aaa_profiling/test_compiler.py')
-rw-r--r--test/aaa_profiling/test_compiler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/aaa_profiling/test_compiler.py b/test/aaa_profiling/test_compiler.py
index f949ce6ea..a7ce7a70b 100644
--- a/test/aaa_profiling/test_compiler.py
+++ b/test/aaa_profiling/test_compiler.py
@@ -39,11 +39,11 @@ class CompileTest(fixtures.TestBase, AssertsExecutionResults):
def test_insert(self):
t1.insert().compile(dialect=self.dialect)
- @profiling.function_call_count(versions={'2.6':53, '2.7':53})
+ @profiling.function_call_count(versions={'2.6':56, '2.7':56})
def test_update(self):
t1.update().compile(dialect=self.dialect)
- @profiling.function_call_count(versions={'2.6':110, '2.7':110, '3':115})
+ @profiling.function_call_count(versions={'2.6':117, '2.7':117, '3':118})
def test_update_whereclause(self):
t1.update().where(t1.c.c2==12).compile(dialect=self.dialect)