summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/ext/test_mutable.py4
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: