summaryrefslogtreecommitdiff
path: root/test/dialect/mysql.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/dialect/mysql.py')
-rw-r--r--test/dialect/mysql.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dialect/mysql.py b/test/dialect/mysql.py
index 2b589f625..e1bd47d29 100644
--- a/test/dialect/mysql.py
+++ b/test/dialect/mysql.py
@@ -6,7 +6,7 @@ from sqlalchemy.databases import mysql
from testlib import *
-class TypesTest(AssertMixin):
+class TypesTest(TestBase, AssertsExecutionResults):
"Test MySQL column types"
__only_on__ = 'mysql'
@@ -762,7 +762,7 @@ class TypesTest(AssertMixin):
self.assertEqual(got, wanted)
-class SQLTest(SQLCompileTest):
+class SQLTest(TestBase, AssertsCompiledSQL):
"""Tests MySQL-dialect specific compilation."""
__dialect__ = mysql.dialect()