summaryrefslogtreecommitdiff
path: root/test/engine/test_execute.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/engine/test_execute.py')
-rw-r--r--test/engine/test_execute.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/engine/test_execute.py b/test/engine/test_execute.py
index 46173d561..f3206e9cc 100644
--- a/test/engine/test_execute.py
+++ b/test/engine/test_execute.py
@@ -403,8 +403,10 @@ class ConvenienceExecuteTest(fixtures.TablesTest):
# autocommit is on
self._assert_fn(5, value=8)
+ @testing.fails_on('mysql+oursql', "oursql bug ? getting wrong rowcount")
def test_connect_as_ctx_noautocommit(self):
fn = self._trans_fn()
+ self._assert_no_data()
ctx = testing.db.connect().execution_options(autocommit=False)
testing.run_as_contextmanager(ctx, fn, 5, value=8)
# autocommit is off