summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2008-11-04 17:28:26 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2008-11-04 17:28:26 +0000
commitc38e5d043f3d340f8e3cb3c82d2013739f35fc78 (patch)
tree9b63eb16b82b53392cbb0fd322836be57022695a /test
parent3f1e5e213d65375e89a23ecb4d50566c1f34b7b0 (diff)
downloadsqlalchemy-c38e5d043f3d340f8e3cb3c82d2013739f35fc78.tar.gz
- Simplified the check for ResultProxy "autoclose without results"
to be based solely on presence of cursor.description. All the regexp-based guessing about statements returning rows has been removed [ticket:1212].
Diffstat (limited to 'test')
-rw-r--r--test/profiling/zoomark.py2
-rw-r--r--test/profiling/zoomark_orm.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/profiling/zoomark.py b/test/profiling/zoomark.py
index 41f6cdc5d..eb21c141e 100644
--- a/test/profiling/zoomark.py
+++ b/test/profiling/zoomark.py
@@ -340,7 +340,7 @@ class ZooMarkTest(TestBase):
def test_profile_4_expressions(self):
self.test_baseline_4_expressions()
- @profiling.function_call_count(1523, {'2.4': 1084})
+ @profiling.function_call_count(1442, {'2.4': 1084})
def test_profile_5_aggregates(self):
self.test_baseline_5_aggregates()
diff --git a/test/profiling/zoomark_orm.py b/test/profiling/zoomark_orm.py
index 54f96ddbf..784bb35a2 100644
--- a/test/profiling/zoomark_orm.py
+++ b/test/profiling/zoomark_orm.py
@@ -306,7 +306,7 @@ class ZooMarkTest(TestBase):
def test_profile_4_expressions(self):
self.test_baseline_4_expressions()
- @profiling.function_call_count(1507)
+ @profiling.function_call_count(1426)
def test_profile_5_aggregates(self):
self.test_baseline_5_aggregates()