diff options
author | Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> | 2021-12-09 12:23:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-09 11:23:34 +0000 |
commit | b3bcacf3c1c72bfadeb46fe4d0198ca155a8c615 (patch) | |
tree | 7cb5897cd377fd8c41ac310aff68bf16de2f4d2a /tests/rest/admin/test_federation.py | |
parent | Allow guests to send state events (#11378) (diff) | |
download | synapse-b3bcacf3c1c72bfadeb46fe4d0198ca155a8c615.tar.xz |
Add missing `errcode` to `parse_string` and `parse_boolean` (#11542)
Diffstat (limited to 'tests/rest/admin/test_federation.py')
-rw-r--r-- | tests/rest/admin/test_federation.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rest/admin/test_federation.py b/tests/rest/admin/test_federation.py index 5188499ef2..d1cd5b0751 100644 --- a/tests/rest/admin/test_federation.py +++ b/tests/rest/admin/test_federation.py @@ -95,7 +95,7 @@ class FederationTestCase(unittest.HomeserverTestCase): ) self.assertEqual(HTTPStatus.BAD_REQUEST, channel.code, msg=channel.json_body) - self.assertEqual(Codes.UNKNOWN, channel.json_body["errcode"]) + self.assertEqual(Codes.INVALID_PARAM, channel.json_body["errcode"]) # invalid search order channel = self.make_request( @@ -105,7 +105,7 @@ class FederationTestCase(unittest.HomeserverTestCase): ) self.assertEqual(HTTPStatus.BAD_REQUEST, channel.code, msg=channel.json_body) - self.assertEqual(Codes.UNKNOWN, channel.json_body["errcode"]) + self.assertEqual(Codes.INVALID_PARAM, channel.json_body["errcode"]) # invalid destination channel = self.make_request( |