summaryrefslogtreecommitdiff
path: root/test/orm/test_froms.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/orm/test_froms.py')
-rw-r--r--test/orm/test_froms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/orm/test_froms.py b/test/orm/test_froms.py
index 30a4c54dd..85c950876 100644
--- a/test/orm/test_froms.py
+++ b/test/orm/test_froms.py
@@ -3587,7 +3587,7 @@ class ExternalColumnsTest(QueryTest):
User,
users,
properties={
- "concat": column_property((users.c.id * 2)),
+ "concat": column_property(users.c.id * 2),
"count": column_property(
select(func.count(addresses.c.id))
.where(
@@ -3754,7 +3754,7 @@ class ExternalColumnsTest(QueryTest):
"addresses": relationship(
Address, backref="user", order_by=addresses.c.id
),
- "concat": column_property((users.c.id * 2)),
+ "concat": column_property(users.c.id * 2),
"count": column_property(
select(func.count(addresses.c.id))
.where(