summaryrefslogtreecommitdiff
path: root/test/engine/transaction.py
diff options
context:
space:
mode:
authorAnts Aasma <ants.aasma@gmail.com>2007-10-16 22:57:05 +0000
committerAnts Aasma <ants.aasma@gmail.com>2007-10-16 22:57:05 +0000
commit6bbc7dd157faf5b513852286ba656fa6723cd2d6 (patch)
tree805fc72fd0053fa4eeedc1b72e9ab55651a177c2 /test/engine/transaction.py
parentcc0e7c796f61e17cb7050de0701905c65ce558eb (diff)
downloadsqlalchemy-6bbc7dd157faf5b513852286ba656fa6723cd2d6.tar.gz
change the in_ API to accept a sequence or a selectable [ticket:750]
Diffstat (limited to 'test/engine/transaction.py')
-rw-r--r--test/engine/transaction.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/engine/transaction.py b/test/engine/transaction.py
index 6a5383b8c..4c7c5ec04 100644
--- a/test/engine/transaction.py
+++ b/test/engine/transaction.py
@@ -670,7 +670,7 @@ class ForUpdateTest(PersistTest):
def overlap(self, ids, errors, update_style):
sel = counters.select(for_update=update_style,
- whereclause=counters.c.counter_id.in_(*ids))
+ whereclause=counters.c.counter_id.in_(ids))
con = testbase.db.connect()
trans = con.begin()
try: