summaryrefslogtreecommitdiff
path: root/test/ext/declarative/test_inheritance.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/ext/declarative/test_inheritance.py')
-rw-r--r--test/ext/declarative/test_inheritance.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/ext/declarative/test_inheritance.py b/test/ext/declarative/test_inheritance.py
index d22090086..9efe08029 100644
--- a/test/ext/declarative/test_inheritance.py
+++ b/test/ext/declarative/test_inheritance.py
@@ -975,8 +975,9 @@ class ConcreteExtensionConfigTest(
session = Session()
self.assert_compile(
session.query(Document),
- "SELECT pjoin.documenttype AS pjoin_documenttype, "
- "pjoin.id AS pjoin_id, pjoin.type AS pjoin_type FROM "
+ "SELECT "
+ "pjoin.id AS pjoin_id, pjoin.documenttype AS pjoin_documenttype, "
+ "pjoin.type AS pjoin_type FROM "
"(SELECT offers.id AS id, offers.documenttype AS documenttype, "
"'offer' AS type FROM offers) AS pjoin",
)