From: Philip Jenvey Date: Sat, 13 Mar 2010 01:19:07 +0000 (-0800) Subject: fix extending of a tuple X-Git-Tag: rel_0_6beta2~54^2~15^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0b78ef9e7a0292f78ef06ff36202e78e4a3f5981;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix extending of a tuple --- diff --git a/test/engine/test_execute.py b/test/engine/test_execute.py index 9da0d49340..39d4144c8f 100644 --- a/test/engine/test_execute.py +++ b/test/engine/test_execute.py @@ -189,7 +189,7 @@ class ProxyConnectionTest(TestBase): insert2_params = (6, 'Foo') if testing.against('oracle+zxjdbc'): from sqlalchemy.dialects.oracle.zxjdbc import ReturningParam - insert2_params.append(ReturningParam(12)) + insert2_params += (ReturningParam(12),) cursor = [ ("CREATE TABLE t1", {}, ()), ("INSERT INTO t1 (c1, c2)", {'c2': 'some data', 'c1': 5}, (5, 'some data')),