summary refs log tree commit diff
path: root/tests/handlers
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2022-06-10 07:15:51 -0400
committerGitHub <noreply@github.com>2022-06-10 07:15:51 -0400
commit81608490e364d5a332b06606aba0703f2fb5d0a9 (patch)
tree6775d0d9d68f3f97c3a227ea819217ba253468a9 /tests/handlers
parentEnable testing against PostgreSQL databases in Complement CI. (#12965) (diff)
downloadsynapse-81608490e364d5a332b06606aba0703f2fb5d0a9.tar.xz
Stop depending on `room_id` to be returned for children state in the hierarchy response. (#12991)
The `room_id` field was removed from MSC2946 before
it was accepted. It was initially kept for backwards compatibility
and should be removed now that the stable form of the API
is used.

This change only stops Synapse from validating that it is returned,
a future PR will remove returning it as part of the response.
Diffstat (limited to 'tests/handlers')
-rw-r--r--tests/handlers/test_room_summary.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/handlers/test_room_summary.py b/tests/handlers/test_room_summary.py
index 0546655690..aa650756e4 100644
--- a/tests/handlers/test_room_summary.py
+++ b/tests/handlers/test_room_summary.py
@@ -178,7 +178,7 @@ class SpaceSummaryTestCase(unittest.HomeserverTestCase):
             result_room_ids.append(result_room["room_id"])
             result_children_ids.append(
                 [
-                    (cs["room_id"], cs["state_key"])
+                    (result_room["room_id"], cs["state_key"])
                     for cs in result_room["children_state"]
                 ]
             )