diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-12-31 11:47:38 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-12-31 11:47:38 -0500 |
commit | 6d36d4635cfbf7a92b86eb45312c86142dd9350c (patch) | |
tree | 29c48fcc69386c130eb7550d926a601cb86e9a64 /test | |
parent | 9d04eaffcc600befce98117eabe82e0ead0dc741 (diff) | |
download | sqlalchemy-6d36d4635cfbf7a92b86eb45312c86142dd9350c.tar.gz |
- add length to varchars
Diffstat (limited to 'test')
-rw-r--r-- | test/ext/test_mutable.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ext/test_mutable.py b/test/ext/test_mutable.py index 3e7a23b8d..1d8208743 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: |