diff options
author | Erik Johnston <erik@matrix.org> | 2019-09-11 13:54:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-11 13:54:50 +0100 |
commit | 57dd41a45b4df5d736e2f30d40926b60f367b500 (patch) | |
tree | b7bb8b4c5d0f79851b6325e2edfceee30ecf6226 /tests/rest | |
parent | Add test for admin redaction ratelimiting. (diff) | |
download | synapse-57dd41a45b4df5d736e2f30d40926b60f367b500.tar.xz |
Fix comments
Co-Authored-By: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
Diffstat (limited to 'tests/rest')
-rw-r--r-- | tests/rest/client/test_redactions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rest/client/test_redactions.py b/tests/rest/client/test_redactions.py index 1b1e991c42..d2bcf256fa 100644 --- a/tests/rest/client/test_redactions.py +++ b/tests/rest/client/test_redactions.py @@ -197,8 +197,8 @@ class RedactionsTestCase(HomeserverTestCase): message_ids.append(b["event_id"]) self.reactor.advance(10) # To get around ratelimits - # as the moderator, send a bunch of redactions redaction + # as the moderator, send a bunch of redactions for msg_id in message_ids: # These should all succeed, even though this would be denied by - # standard message ratelimiter + # the standard message ratelimiter self._redact_event(self.mod_access_token, self.room_id, msg_id) |