summary refs log tree commit diff
path: root/tests/rest/admin/test_room.py
diff options
context:
space:
mode:
authorDavid Robertson <davidr@element.io>2022-07-04 18:08:56 +0100
committerGitHub <noreply@github.com>2022-07-04 18:08:56 +0100
commitd102ad67fddc650c34baa89dc7b2926d46a9aeca (patch)
tree542df6d58640540ea934cd7a5bd0e1486fe96bdf /tests/rest/admin/test_room.py
parentRevert "Up the dependency on canonicaljson to ^1.5.0" (diff)
downloadsynapse-d102ad67fddc650c34baa89dc7b2926d46a9aeca.tar.xz
annotate tests.server.FakeChannel (#13136)
Diffstat (limited to 'tests/rest/admin/test_room.py')
-rw-r--r--tests/rest/admin/test_room.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rest/admin/test_room.py b/tests/rest/admin/test_room.py
index ca6af9417b..230dc76f72 100644
--- a/tests/rest/admin/test_room.py
+++ b/tests/rest/admin/test_room.py
@@ -1579,8 +1579,8 @@ class RoomTestCase(unittest.HomeserverTestCase):
             access_token=self.admin_user_tok,
         )
         self.assertEqual(HTTPStatus.OK, channel.code, msg=channel.json_body)
-        self.assertEqual(room_id, channel.json_body.get("rooms")[0].get("room_id"))
-        self.assertEqual("ж", channel.json_body.get("rooms")[0].get("name"))
+        self.assertEqual(room_id, channel.json_body["rooms"][0].get("room_id"))
+        self.assertEqual("ж", channel.json_body["rooms"][0].get("name"))
 
     def test_single_room(self) -> None:
         """Test that a single room can be requested correctly"""