diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-08-21 16:56:22 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-08-21 16:56:22 +0000 |
commit | 7f46c8b8d965672fc38c2221a95944e704d63448 (patch) | |
tree | 1dd848809866a3ee8e10f4a316c6c4017c22759c /test/dialect/mysql.py | |
parent | 3b08545b2469cced14d7c028d58af0535d961c69 (diff) | |
download | sqlalchemy-7f46c8b8d965672fc38c2221a95944e704d63448.tar.gz |
fixed "SmallInteger"
Diffstat (limited to 'test/dialect/mysql.py')
-rw-r--r-- | test/dialect/mysql.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dialect/mysql.py b/test/dialect/mysql.py index 294842854..d0e8078ba 100644 --- a/test/dialect/mysql.py +++ b/test/dialect/mysql.py @@ -568,8 +568,8 @@ class TypesTest(AssertMixin): ( NCHAR(2), mysql.MSChar(2), ), ( 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(), ), + ( SmallInteger(4), mysql.MSSmallInteger(4), ), ( mysql.MSSmallInteger(), ), ( mysql.MSSmallInteger(4), mysql.MSSmallInteger(4), ), ( Binary(3), mysql.MSBlob(3), ), |