diff options
Diffstat (limited to 'test/dialect/mysql.py')
-rw-r--r-- | test/dialect/mysql.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/mysql.py b/test/dialect/mysql.py index 415f5a653..2c944fd3a 100644 --- a/test/dialect/mysql.py +++ b/test/dialect/mysql.py @@ -659,7 +659,7 @@ class TypesTest(TestBase, AssertsExecutionResults): ( mysql.MSNChar(2), mysql.MSChar(2), ), # N is CREATE only ( mysql.MSNVarChar(22), mysql.MSString(22), ), ( SmallInteger(), mysql.MSSmallInteger(), ), - ( SmallInteger(4), mysql.MSSmallInteger(4), ), + ( SmallInteger(), mysql.MSSmallInteger(4), ), ( mysql.MSSmallInteger(), ), ( mysql.MSSmallInteger(4), mysql.MSSmallInteger(4), ), ( Binary(3), mysql.MSBlob(3), ), |