diff --git a/product/ERP5Type/tests/Sequence.py b/product/ERP5Type/tests/Sequence.py index ad2783331f0834085c7714dce30de54f3839419d..d3cd2a150005f795ba8866eb9401dfce46867967 100644 --- a/product/ERP5Type/tests/Sequence.py +++ b/product/ERP5Type/tests/Sequence.py @@ -102,6 +102,9 @@ class Sequence: def __getitem__(self, key): return self._dict[key] + def __setitem__(self, key, value): + self._dict[key] = value + def asText(self): """ Representation of the current Sequence. Useful for debuggers.