summaryrefslogtreecommitdiff
path: root/test/sql/test_operators.py
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2022-01-07 16:42:18 +0000
committerGerrit Code Review <gerrit@ci3.zzzcomputing.com>2022-01-07 16:42:18 +0000
commit5681d4e4da8ee69d83e9c0103c171d413d4c183e (patch)
tree0fbd708622af483ba6c7b39dc387ee0ac6ded144 /test/sql/test_operators.py
parentad244b9b7577486bd4e22d74d64e35802af84977 (diff)
parent56256b6d132c0deae4368a7d0d04912df9a80fc0 (diff)
downloadsqlalchemy-5681d4e4da8ee69d83e9c0103c171d413d4c183e.tar.gz
Merge "Fix various source comment/doc typos" into main
Diffstat (limited to 'test/sql/test_operators.py')
-rw-r--r--test/sql/test_operators.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/test_operators.py b/test/sql/test_operators.py
index 2c77c39f3..e72ab6ac9 100644
--- a/test/sql/test_operators.py
+++ b/test/sql/test_operators.py
@@ -2701,7 +2701,7 @@ class MatchTest(fixtures.TestBase, testing.AssertsCompiledSQL):
)
def test_boolean_inversion_mysql(self):
- # because mysql doesnt have native boolean
+ # because mysql doesn't have native boolean
self.assert_compile(
~self.table1.c.myid.match("somstr"),
"NOT MATCH (mytable.myid) AGAINST (%s IN BOOLEAN MODE)",
@@ -2709,7 +2709,7 @@ class MatchTest(fixtures.TestBase, testing.AssertsCompiledSQL):
)
def test_boolean_inversion_mssql(self):
- # because mssql doesnt have native boolean
+ # because mssql doesn't have native boolean
self.assert_compile(
~self.table1.c.myid.match("somstr"),
"NOT CONTAINS (mytable.myid, :myid_1)",