From: Mike Bayer Date: Fri, 31 Dec 2010 16:47:38 +0000 (-0500) Subject: - add length to varchars X-Git-Tag: rel_0_7b1~99 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6d36d4635cfbf7a92b86eb45312c86142dd9350c;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - add length to varchars --- diff --git a/test/ext/test_mutable.py b/test/ext/test_mutable.py index 3e7a23b8db..1d8208743f 100644 --- a/test/ext/test_mutable.py +++ b/test/ext/test_mutable.py @@ -104,7 +104,7 @@ class MutableWithScalarJSONTest(_MutableDictTestBase, _base.MappedTest): import json class JSONEncodedDict(TypeDecorator): - impl = VARCHAR + impl = VARCHAR(50) def process_bind_param(self, value, dialect): if value is not None: @@ -148,7 +148,7 @@ class MutableAssociationScalarJSONTest(_MutableDictTestBase, _base.MappedTest): import json class JSONEncodedDict(TypeDecorator): - impl = VARCHAR + impl = VARCHAR(50) def process_bind_param(self, value, dialect): if value is not None: