summaryrefslogtreecommitdiff
path: root/test/orm/test_query.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/orm/test_query.py')
-rw-r--r--test/orm/test_query.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/orm/test_query.py b/test/orm/test_query.py
index 98be71f34..5c17cdaef 100644
--- a/test/orm/test_query.py
+++ b/test/orm/test_query.py
@@ -2043,7 +2043,9 @@ class OperatorTest(QueryTest, AssertsCompiledSQL):
def test_in(self):
User = self.classes.User
- self._test(User.id.in_(["a", "b"]), "users.id IN ([POSTCOMPILE_id_1])")
+ self._test(
+ User.id.in_(["a", "b"]), "users.id IN (__[POSTCOMPILE_id_1])"
+ )
def test_in_on_relationship_not_supported(self):
User, Address = self.classes.User, self.classes.Address