summaryrefslogtreecommitdiff
path: root/test/sql/test_operators.py
diff options
context:
space:
mode:
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)",