summary refs log tree commit diff
path: root/tests/rest/admin/test_media.py
diff options
context:
space:
mode:
authorDirk Klimpel <5740567+dklimpel@users.noreply.github.com>2021-12-09 12:23:34 +0100
committerGitHub <noreply@github.com>2021-12-09 11:23:34 +0000
commitb3bcacf3c1c72bfadeb46fe4d0198ca155a8c615 (patch)
tree7cb5897cd377fd8c41ac310aff68bf16de2f4d2a /tests/rest/admin/test_media.py
parentAllow guests to send state events (#11378) (diff)
downloadsynapse-b3bcacf3c1c72bfadeb46fe4d0198ca155a8c615.tar.xz
Add missing `errcode` to `parse_string` and `parse_boolean` (#11542)
Diffstat (limited to 'tests/rest/admin/test_media.py')
-rw-r--r--tests/rest/admin/test_media.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rest/admin/test_media.py b/tests/rest/admin/test_media.py
index 81e578fd26..3f727788ce 100644
--- a/tests/rest/admin/test_media.py
+++ b/tests/rest/admin/test_media.py
@@ -360,7 +360,7 @@ class DeleteMediaByDateSizeTestCase(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"])
         self.assertEqual(
             "Boolean query parameter 'keep_profiles' must be one of ['true', 'false']",
             channel.json_body["error"],