summaryrefslogtreecommitdiff
path: root/tests/mail
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mail')
-rw-r--r--tests/mail/custombackend.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mail/custombackend.py b/tests/mail/custombackend.py
index 6b0e15ad0a..ac631a6e1b 100644
--- a/tests/mail/custombackend.py
+++ b/tests/mail/custombackend.py
@@ -10,6 +10,6 @@ class EmailBackend(BaseEmailBackend):
self.test_outbox = []
def send_messages(self, email_messages):
- # Messages are stored in a instance variable for testing.
+ # Messages are stored in an instance variable for testing.
self.test_outbox.extend(email_messages)
return len(email_messages)