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)
|