]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fixed "SmallInteger"
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 21 Aug 2007 16:56:22 +0000 (16:56 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 21 Aug 2007 16:56:22 +0000 (16:56 +0000)
test/dialect/mysql.py

index 2948428543b2a25ca1999ce77cc3a02afaa24885..d0e8078ba11ac218ec0b13b04009d3ca4c00df08 100644 (file)
@@ -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), ),