summaryrefslogtreecommitdiff
path: root/test/orm/test_bulk.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/orm/test_bulk.py')
-rw-r--r--test/orm/test_bulk.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/orm/test_bulk.py b/test/orm/test_bulk.py
index cd569fa73..59be0c88f 100644
--- a/test/orm/test_bulk.py
+++ b/test/orm/test_bulk.py
@@ -222,7 +222,8 @@ class BulkInsertUpdateTest(BulkTest, _fixtures.FixtureTest):
asserter.assert_(
CompiledSQL(
- "INSERT INTO orders (id, description) VALUES (:id, :description)",
+ "INSERT INTO orders (id, description) "
+ "VALUES (:id, :description)",
[{'id': 1, 'description': 'u1new'},
{'id': 2, 'description': None},
{'id': 3, 'description': 'u3new'}]