diff options
Diffstat (limited to 'test/ext/test_mutable.py')
-rw-r--r-- | test/ext/test_mutable.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/ext/test_mutable.py b/test/ext/test_mutable.py index e89107c6d..49d3b9d90 100644 --- a/test/ext/test_mutable.py +++ b/test/ext/test_mutable.py @@ -970,6 +970,7 @@ class MutableWithScalarJSONTest(_MutableDictTestBase, fixtures.MappedTest): class JSONEncodedDict(TypeDecorator): impl = VARCHAR(50) + cache_ok = True def process_bind_param(self, value, dialect): if value is not None: @@ -1007,6 +1008,7 @@ class MutableColumnCopyJSONTest(_MutableDictTestBase, fixtures.MappedTest): class JSONEncodedDict(TypeDecorator): impl = VARCHAR(50) + cache_ok = True def process_bind_param(self, value, dialect): if value is not None: @@ -1188,6 +1190,7 @@ class MutableAssociationScalarJSONTest( class JSONEncodedDict(TypeDecorator): impl = VARCHAR(50) + cache_ok = True def process_bind_param(self, value, dialect): if value is not None: @@ -1239,6 +1242,7 @@ class CustomMutableAssociationScalarJSONTest( class JSONEncodedDict(TypeDecorator): impl = VARCHAR(50) + cache_ok = True def process_bind_param(self, value, dialect): if value is not None: |