Add created_at/modified_at to entity registry (#122444)

This commit is contained in:
Robert Resch 2024-07-23 13:12:29 +02:00 committed by GitHub
parent 8d14095cb9
commit 0d765a27c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 277 additions and 83 deletions

View file

@ -287,6 +287,8 @@ async def test_snapshots(
entry = asdict(entity_entry)
entry.pop("id", None)
entry.pop("device_id", None)
entry.pop("created_at", None)
entry.pop("modified_at", None)
entities.append({"entry": entry, "state": state_dict})