diff options
author | Lele Gaifax <lele@metapensiero.it> | 2008-05-15 12:45:50 +0000 |
---|---|---|
committer | Lele Gaifax <lele@metapensiero.it> | 2008-05-15 12:45:50 +0000 |
commit | 590e74182f68a8932e8c4d2c4b53da28b316ffdf (patch) | |
tree | a3220665e50532d9c1cefc2ccd0c10054889e7b9 /test/dialect/firebird.py | |
parent | 2f2bce5651622f7ab8540f43a765a4d68d8830e4 (diff) | |
download | sqlalchemy-590e74182f68a8932e8c4d2c4b53da28b316ffdf.tar.gz |
Fix table.delete() arguments
Diffstat (limited to 'test/dialect/firebird.py')
-rw-r--r-- | test/dialect/firebird.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/firebird.py b/test/dialect/firebird.py index 4b4b9fd7f..bfca63415 100644 --- a/test/dialect/firebird.py +++ b/test/dialect/firebird.py @@ -187,7 +187,7 @@ class ReturningTest(TestBase, AssertsExecutionResults): try: table.insert().execute([{'persons': 5, 'full': False}, {'persons': 3, 'full': False}]) - result = table.delete(table.c.persons > 4, dict(full=True), firebird_returning=[table.c.id]).execute() + result = table.delete(table.c.persons > 4, firebird_returning=[table.c.id]).execute() self.assertEqual(result.fetchall(), [(1,)]) result2 = select([table.c.id, table.c.full]).order_by(table.c.id).execute() |