diff options
author | Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> | 2022-08-05 16:59:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-05 16:59:09 +0200 |
commit | e2ed1b7155bbd38d4a2752073056c112464b3644 (patch) | |
tree | 72c0dd52bb339199a559726aff40a7633403e82b /tests/rest/client/test_redactions.py | |
parent | Mark token-authenticaticated-registration API as not-experimental (#11897) (diff) | |
download | synapse-e2ed1b7155bbd38d4a2752073056c112464b3644.tar.xz |
Use literals in place of `HTTPStatus` constants in tests (#13463)
Diffstat (limited to 'tests/rest/client/test_redactions.py')
-rw-r--r-- | tests/rest/client/test_redactions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rest/client/test_redactions.py b/tests/rest/client/test_redactions.py index 7401b5e0c0..be4c67d68e 100644 --- a/tests/rest/client/test_redactions.py +++ b/tests/rest/client/test_redactions.py @@ -76,12 +76,12 @@ class RedactionsTestCase(HomeserverTestCase): path = "/_matrix/client/r0/rooms/%s/redact/%s" % (room_id, event_id) channel = self.make_request("POST", path, content={}, access_token=access_token) - self.assertEqual(int(channel.result["code"]), expect_code) + self.assertEqual(channel.code, expect_code) return channel.json_body def _sync_room_timeline(self, access_token: str, room_id: str) -> List[JsonDict]: channel = self.make_request("GET", "sync", access_token=self.mod_access_token) - self.assertEqual(channel.result["code"], b"200") + self.assertEqual(channel.code, 200) room_sync = channel.json_body["rooms"]["join"][room_id] return room_sync["timeline"]["events"] |