summaryrefslogtreecommitdiff
path: root/test/engine/test_execute.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-11-20 17:57:30 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2010-11-20 17:57:30 -0500
commit45cdb17ef0b08f31a42423554ec94ed913fb31fe (patch)
tree677b1980bf5b4ae3a595848117ce5a0de8b9639d /test/engine/test_execute.py
parentca2d85540f21f2afaa9def55b8f907adced62e80 (diff)
downloadsqlalchemy-45cdb17ef0b08f31a42423554ec94ed913fb31fe.tar.gz
- fixes for PG, mysql, twophase
- added "pool_events" arg to create_engine(), "events" to pool, allowing establishment of listeners which fire before those of the dialect
Diffstat (limited to 'test/engine/test_execute.py')
-rw-r--r--test/engine/test_execute.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/engine/test_execute.py b/test/engine/test_execute.py
index 90c4e98e5..7334f755a 100644
--- a/test/engine/test_execute.py
+++ b/test/engine/test_execute.py
@@ -602,9 +602,8 @@ class EngineEventsTest(TestBase):
def test_transactional_advanced(self):
canary = []
def tracker(name):
- def go(conn, exec_, *args, **kw):
+ def go(*args, **kw):
canary.append(name)
- return exec_(*args, **kw)
return go
engine = engines.testing_engine()