mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-10 01:20:12 -04:00
annotate tests.server.FakeChannel (#13136)
This commit is contained in:
parent
5b5c943e7d
commit
d102ad67fd
7 changed files with 36 additions and 26 deletions
|
@ -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"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue