diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-07-09 13:43:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-09 13:43:08 +0100 |
commit | d88421ab03e72a6c7f69ca38a57b4b6212f1bc82 (patch) | |
tree | 64635f93fd52e229b5ee8667bf8164b297685057 /tests | |
parent | Merge pull request #5644 from matrix-org/babolivier/profile-allow-self (diff) | |
download | synapse-d88421ab03e72a6c7f69ca38a57b4b6212f1bc82.tar.xz |
Include the original event in /relations (#5626)
When asking for the relations of an event, include the original event in the response. This will mostly be used for efficiently showing edit history, but could be useful in other circumstances.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/rest/client/v2_alpha/test_relations.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/rest/client/v2_alpha/test_relations.py b/tests/rest/client/v2_alpha/test_relations.py index 6bb7d92638..58c6951852 100644 --- a/tests/rest/client/v2_alpha/test_relations.py +++ b/tests/rest/client/v2_alpha/test_relations.py @@ -126,6 +126,11 @@ class RelationsTestCase(unittest.HomeserverTestCase): channel.json_body["chunk"][0], ) + # We also expect to get the original event (the id of which is self.parent_id) + self.assertEquals( + channel.json_body["original_event"]["event_id"], self.parent_id + ) + # Make sure next_batch has something in it that looks like it could be a # valid token. self.assertIsInstance( |