summaryrefslogtreecommitdiff
path: root/test/dialect/mysql
diff options
context:
space:
mode:
authorjonathan vanasco <jonathan@2xlp.com>2020-10-28 15:58:55 -0400
committerjonathan vanasco <jonathan@2xlp.com>2020-10-30 11:59:47 -0400
commit580657f0680024980d4df286d018da626ed757e1 (patch)
tree5258af559d117c224f9d2b16ecf4f7a1b0de3ae9 /test/dialect/mysql
parent841eb216644202567ebddfc0badc51a3a35e98c3 (diff)
downloadsqlalchemy-580657f0680024980d4df286d018da626ed757e1.tar.gz
while working on #5435, I found some misses from the previous PR for #5429
Change-Id: I0be15f6234c74302734672450a3275add762bdb8
Diffstat (limited to 'test/dialect/mysql')
-rw-r--r--test/dialect/mysql/test_query.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/mysql/test_query.py b/test/dialect/mysql/test_query.py
index e23ff00d0..f9d9caf16 100644
--- a/test/dialect/mysql/test_query.py
+++ b/test/dialect/mysql/test_query.py
@@ -34,7 +34,7 @@ class IdiosyncrasyTest(fixtures.TestBase):
)
is_(
- connection.scalar(select(cast(true().isnot(true()), Boolean))),
+ connection.scalar(select(cast(true().is_not(true()), Boolean))),
False,
)