From: Mike Bayer Date: Thu, 11 Mar 2010 18:21:44 +0000 (+0000) Subject: this test requires a length for the varchar in mysql/oracle X-Git-Tag: rel_0_6beta2~57^2~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a3a909ed2fc918c7cc7dd80b578bb0991d60bd9;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git this test requires a length for the varchar in mysql/oracle --- diff --git a/test/sql/test_types.py b/test/sql/test_types.py index 3e9242481d..f9bd5c1738 100644 --- a/test/sql/test_types.py +++ b/test/sql/test_types.py @@ -721,7 +721,7 @@ class ExpressionTest(TestBase, AssertsExecutionResults, AssertsCompiledSQL): Column('data', String(30)), Column('atimestamp', Date), Column('avalue', MyCustomType), - Column('bvalue', MyTypeDec), + Column('bvalue', MyTypeDec(50)), ) meta.create_all()