From 7f46c8b8d965672fc38c2221a95944e704d63448 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 21 Aug 2007 16:56:22 +0000 Subject: [PATCH] fixed "SmallInteger" --- test/dialect/mysql.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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), ), -- 2.47.3