summaryrefslogtreecommitdiff
path: root/test/dialect/test_mysql.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/dialect/test_mysql.py')
-rw-r--r--test/dialect/test_mysql.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dialect/test_mysql.py b/test/dialect/test_mysql.py
index 11e0d77a4..23a85b6bb 100644
--- a/test/dialect/test_mysql.py
+++ b/test/dialect/test_mysql.py
@@ -1261,7 +1261,7 @@ class MatchTest(TestBase, AssertsCompiledSQL):
'title': 'Dive Into Python',
'category_id': 1},
{'id': 3,
- 'title': 'Programming Matz''s Ruby',
+ 'title': "Programming Matz's Ruby",
'category_id': 2},
{'id': 4,
'title': 'The Definitive Guide to Django',
@@ -1302,7 +1302,7 @@ class MatchTest(TestBase, AssertsCompiledSQL):
def test_simple_match_with_apostrophe(self):
results = (matchtable.select().
- where(matchtable.c.title.match('"Matz''s"')).
+ where(matchtable.c.title.match("Matz's")).
execute().
fetchall())
eq_([3], [r.id for r in results])