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, 1 insertions, 3 deletions
diff --git a/test/dialect/mysql.py b/test/dialect/mysql.py
index 923658b01..6a261ddcd 100644
--- a/test/dialect/mysql.py
+++ b/test/dialect/mysql.py
@@ -630,11 +630,9 @@ class TypesTest(TestBase, AssertsExecutionResults):
@testing.uses_deprecated('Using String type with no length')
def test_type_reflection(self):
# (ask_for, roundtripped_as_if_different)
- specs = [( String(), mysql.MSText(), ),
- ( String(1), mysql.MSString(1), ),
+ specs = [( String(1), mysql.MSString(1), ),
( String(3), mysql.MSString(3), ),
( Text(), mysql.MSText(), ),
- ( Unicode(), mysql.MSText(), ),
( Unicode(1), mysql.MSString(1), ),
( Unicode(3), mysql.MSString(3), ),
( UnicodeText(), mysql.MSText(), ),