From 6d36d4635cfbf7a92b86eb45312c86142dd9350c Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 31 Dec 2010 11:47:38 -0500 Subject: [PATCH] - add length to varchars --- test/ext/test_mutable.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: -- 2.47.2