summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/suite/test_select.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/testing/suite/test_select.py')
-rw-r--r--lib/sqlalchemy/testing/suite/test_select.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/testing/suite/test_select.py b/lib/sqlalchemy/testing/suite/test_select.py
index adcd7d8b9..c199929a7 100644
--- a/lib/sqlalchemy/testing/suite/test_select.py
+++ b/lib/sqlalchemy/testing/suite/test_select.py
@@ -821,7 +821,7 @@ class ExpandingBoundInTest(fixtures.TablesTest):
stmt = (
select(table.c.id)
- .where(table.c.x.notin_(bindparam("q", expanding=True)))
+ .where(table.c.x.not_in(bindparam("q", expanding=True)))
.order_by(table.c.id)
)
@@ -843,7 +843,7 @@ class ExpandingBoundInTest(fixtures.TablesTest):
stmt = (
select(table.c.id)
- .where(table.c.z.notin_(bindparam("q", expanding=True)))
+ .where(table.c.z.not_in(bindparam("q", expanding=True)))
.order_by(table.c.id)
)