summaryrefslogtreecommitdiff
path: root/test/aaa_profiling/test_compiler.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-12-27 14:17:10 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2010-12-27 14:17:10 -0500
commitfe2d3e0aa25d58e1b1b352e98792ac62f4cd315c (patch)
tree08133f82073fea74c8f9ff26ef7e541c033d91b7 /test/aaa_profiling/test_compiler.py
parentbfbc0a08f6024ec3016f0fd10359da9356928468 (diff)
downloadsqlalchemy-fe2d3e0aa25d58e1b1b352e98792ac62f4cd315c.tar.gz
py3k fixes
Diffstat (limited to 'test/aaa_profiling/test_compiler.py')
-rw-r--r--test/aaa_profiling/test_compiler.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/aaa_profiling/test_compiler.py b/test/aaa_profiling/test_compiler.py
index 5afcf69bc..d77624cb5 100644
--- a/test/aaa_profiling/test_compiler.py
+++ b/test/aaa_profiling/test_compiler.py
@@ -33,7 +33,7 @@ class CompileTest(TestBase, AssertsExecutionResults):
cls.dialect = default.DefaultDialect()
@profiling.function_call_count(versions={'2.7':58, '2.6':58,
- '3.0':77, '3.1':77})
+ '3':64})
def test_insert(self):
t1.insert().compile(dialect=self.dialect)
@@ -41,12 +41,12 @@ class CompileTest(TestBase, AssertsExecutionResults):
def test_update(self):
t1.update().compile(dialect=self.dialect)
- @profiling.function_call_count(versions={'2.6':110, '2.7':110, '2.4': 81, '3':132})
+ @profiling.function_call_count(versions={'2.6':110, '2.7':110, '2.4': 81, '3':115})
def test_update_whereclause(self):
t1.update().where(t1.c.c2==12).compile(dialect=self.dialect)
@profiling.function_call_count(versions={'2.7':148, '2.6':148,
- '3.0':208, '3.1':208})
+ '3':161})
def test_select(self):
s = select([t1], t1.c.c2==t2.c.c1)
s.compile(dialect=self.dialect)