From 6bbc7dd157faf5b513852286ba656fa6723cd2d6 Mon Sep 17 00:00:00 2001 From: Ants Aasma Date: Tue, 16 Oct 2007 22:57:05 +0000 Subject: change the in_ API to accept a sequence or a selectable [ticket:750] --- test/engine/transaction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/engine/transaction.py') 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: -- cgit v1.2.1