diff options
author | Erik Johnston <erik@matrix.org> | 2018-08-24 16:51:27 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-08-24 16:51:27 +0100 |
commit | 05077e06fa527a9b504e34bbd14af53ba66d3f62 (patch) | |
tree | 46b20a6a5a0e9ba4abde6f7d3602b3c03a83f375 /tests/api | |
parent | Merge pull request #3755 from matrix-org/erikj/fix_server_notice_tags (diff) | |
download | synapse-05077e06fa527a9b504e34bbd14af53ba66d3f62.tar.xz |
Change admin_uri to admin_contact in config and errors
Diffstat (limited to 'tests/api')
-rw-r--r-- | tests/api/test_auth.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/api/test_auth.py b/tests/api/test_auth.py index ed960090c4..54e396d19d 100644 --- a/tests/api/test_auth.py +++ b/tests/api/test_auth.py @@ -457,7 +457,7 @@ class AuthTestCase(unittest.TestCase): with self.assertRaises(ResourceLimitError) as e: yield self.auth.check_auth_blocking() - self.assertEquals(e.exception.admin_uri, self.hs.config.admin_uri) + self.assertEquals(e.exception.admin_contact, self.hs.config.admin_contact) self.assertEquals(e.exception.errcode, Codes.RESOURCE_LIMIT_EXCEEDED) self.assertEquals(e.exception.code, 403) @@ -473,7 +473,7 @@ class AuthTestCase(unittest.TestCase): self.hs.config.hs_disabled_message = "Reason for being disabled" with self.assertRaises(ResourceLimitError) as e: yield self.auth.check_auth_blocking() - self.assertEquals(e.exception.admin_uri, self.hs.config.admin_uri) + self.assertEquals(e.exception.admin_contact, self.hs.config.admin_contact) self.assertEquals(e.exception.errcode, Codes.RESOURCE_LIMIT_EXCEEDED) self.assertEquals(e.exception.code, 403) |