Changeset 35c304c in trunk
- Timestamp:
- 2020-11-03T15:04:16Z (5 years ago)
- Branches:
- master
- Children:
- e3a0f61
- Parents:
- 92a4a5a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/allmydata/test/eliotutil.py ¶
r92a4a5a r35c304c 7 7 # `exceptions.TypeError: <class 'future.types.newstr.newstr'> is not JSON-encodeable` 8 8 from past.builtins import unicode as str 9 from future.utils import PY3 9 10 10 11 __all__ = [ … … 165 166 @eliot_logged_test 166 167 def run(self, result=None): 168 # Workaround for https://github.com/itamarst/eliot/issues/456 169 if PY3: 170 self.case.eliot_logger._validate_message = lambda *args, **kwargs: None 167 171 return self._run_tests_with_factory( 168 172 self.case,
Note: See TracChangeset
for help on using the changeset viewer.