summaryrefslogtreecommitdiff
path: root/test/aaa_profiling
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-07-23 20:59:46 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-07-23 20:59:46 -0400
commit37ced0946c4717422f8a4cc6ce4de1bd78ee942e (patch)
tree3e19ca29d1a84c85ea49078c22b03ab86ca1151b /test/aaa_profiling
parentec1762e6204a84207332cf1b2a0f0df4b5bc8937 (diff)
downloadsqlalchemy-37ced0946c4717422f8a4cc6ce4de1bd78ee942e.tar.gz
- some more interpret_as_froms
Diffstat (limited to 'test/aaa_profiling')
-rw-r--r--test/aaa_profiling/test_resultset.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/aaa_profiling/test_resultset.py b/test/aaa_profiling/test_resultset.py
index bb16ea124..f6687f3dd 100644
--- a/test/aaa_profiling/test_resultset.py
+++ b/test/aaa_profiling/test_resultset.py
@@ -38,8 +38,8 @@ class ResultSetTest(fixtures.TestBase, AssertsExecutionResults):
'2.4': 13214,
'2.6':14416,
'2.7':14416,
- '2.6+cextension': 336,
- '2.7+cextension':336})
+ '2.6+cextension': 354,
+ '2.7+cextension':354})
def test_string(self):
[tuple(row) for row in t.select().execute().fetchall()]
@@ -48,8 +48,8 @@ class ResultSetTest(fixtures.TestBase, AssertsExecutionResults):
@profiling.function_call_count(versions={
'2.7':14396,
'2.6':14396,
- '2.6+cextension': 336,
- '2.7+cextension':336})
+ '2.6+cextension': 354,
+ '2.7+cextension':354})
def test_unicode(self):
[tuple(row) for row in t2.select().execute().fetchall()]
@@ -72,8 +72,8 @@ class ExecutionTest(fixtures.TestBase):
# ensure initial connect activities complete
c.execute("select 1")
- @profiling.function_call_count(versions={'2.7':40, '2.6':40, '2.5':35,
- '2.4':21, '3':40},
+ @profiling.function_call_count(versions={'2.7':40, '2.6':40, '2.5':35,
+ '2.4':21, '3':40},
variance=.10)
def go():
c.execute("select 1")
@@ -85,10 +85,10 @@ class ExecutionTest(fixtures.TestBase):
# ensure initial connect activities complete
e.execute("select 1")
- @profiling.function_call_count(versions={'2.4':41, '2.5':65,
+ @profiling.function_call_count(versions={'2.4':41, '2.5':65,
'2.6':65, '3':61,
'2.7':65,
- '2.6+cextension':65},
+ '2.6+cextension':65},
variance=.05)
def go():
e.execute("select 1")