Changeset e458b5a in flexoentity for tests


Ignore:
Timestamp:
11/27/25 10:17:08 (7 weeks ago)
Author:
Enrico Schwass <ennoausberlin@…>
Branches:
master
Children:
9a50e0b
Parents:
0fbb01a
Message:

fix Domain and FlexoSignature and tests to reflect changes to serialization

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/conftest.py

    r0fbb01a re458b5a  
    5959        return cls()
    6060
    61     def to_dict(self):
    62         base = super().to_dict()
    63         base.update({
     61    def _serialize_content(self):
     62        return {
    6463            "text": self.text,
    6564            "options": [opt.to_dict() for opt in self.options],
    66         })
    67         return base
     65        }
    6866
    6967    @property
Note: See TracChangeset for help on using the changeset viewer.