summaryrefslogtreecommitdiff
path: root/test/sql/test_selectable.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/sql/test_selectable.py')
-rw-r--r--test/sql/test_selectable.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/test_selectable.py b/test/sql/test_selectable.py
index e68e98a3c..f0df92b70 100644
--- a/test/sql/test_selectable.py
+++ b/test/sql/test_selectable.py
@@ -2948,7 +2948,7 @@ class AnnotationsTest(fixtures.TestBase):
(table1.c.col1 == 5, "table1.col1 = :col1_1"),
(
table1.c.col1.in_([2, 3, 4]),
- "table1.col1 IN ([POSTCOMPILE_col1_1])",
+ "table1.col1 IN (__[POSTCOMPILE_col1_1])",
),
]:
eq_(str(expr), expected)