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_statistics.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_statistics.py')
-rw-r--r-- | tests/rest/admin/test_statistics.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rest/admin/test_statistics.py b/tests/rest/admin/test_statistics.py index f6e85fdaad..7cb8ec57ba 100644 --- a/tests/rest/admin/test_statistics.py +++ b/tests/rest/admin/test_statistics.py @@ -92,7 +92,7 @@ class UserMediaStatisticsTestCase(unittest.HomeserverTestCase): channel.code, msg=channel.json_body, ) - self.assertEqual(Codes.UNKNOWN, channel.json_body["errcode"]) + self.assertEqual(Codes.INVALID_PARAM, channel.json_body["errcode"]) # negative from channel = self.make_request( |