From: Mike Bayer Date: Tue, 21 Aug 2007 16:56:22 +0000 (+0000) Subject: fixed "SmallInteger" X-Git-Tag: rel_0_4beta4~21 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7f46c8b8d965672fc38c2221a95944e704d63448;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fixed "SmallInteger" --- diff --git a/test/dialect/mysql.py b/test/dialect/mysql.py index 2948428543..d0e8078ba1 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), ),