diff options
author | Shay <hillerys@element.io> | 2023-07-23 16:32:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-23 16:32:01 -0700 |
commit | 5c7364fea57e24ae3ce2ac833a3521abd58312db (patch) | |
tree | 2df6dd437d8c6f978569b50ad0fa01f0074c076c /tests | |
parent | Actually stop reading from column `user_id` of tables `profiles` (#15955) (diff) | |
download | synapse-5c7364fea57e24ae3ce2ac833a3521abd58312db.tar.xz |
Properly handle redactions of creation events (#15973)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/events/test_utils.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/events/test_utils.py b/tests/events/test_utils.py index 6a52af4d82..978612e432 100644 --- a/tests/events/test_utils.py +++ b/tests/events/test_utils.py @@ -225,9 +225,14 @@ class PruneEventTestCase(stdlib_unittest.TestCase): }, ) - # After MSC2176, create events get nothing redacted. + # After MSC2176, create events should preserve field `content` self.run_test( - {"type": "m.room.create", "content": {"not_a_real_key": True}}, + { + "type": "m.room.create", + "content": {"not_a_real_key": True}, + "origin": "some_homeserver", + "nonsense_field": "some_random_garbage", + }, { "type": "m.room.create", "content": {"not_a_real_key": True}, |