From ae0fef30630076f4589ac2a366334aae16a7cd76 Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Mon, 2 Nov 2020 10:04:30 +0000 Subject: [PATCH] Update tests/rest/admin/test_user.py Co-authored-by: Patrick Cloke --- tests/rest/admin/test_user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rest/admin/test_user.py b/tests/rest/admin/test_user.py index 12c549916a..f168367694 100644 --- a/tests/rest/admin/test_user.py +++ b/tests/rest/admin/test_user.py @@ -1753,7 +1753,7 @@ class UserTokenRestTestCase(unittest.HomeserverTestCase): # Create a room as the admin user. This will bump the monthly active users to 1. room_id = self.helper.create_room_as(self.admin_user, tok=self.admin_user_tok) - # Trying to join as the other user should fail. + # Trying to join as the other user should fail due to reaching MAU limit. self.helper.join( room_id, user=self.other_user, tok=self.other_user_tok, expect_code=403 )