summaryrefslogtreecommitdiff
path: root/tests/auth_tests/test_context_processors.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auth_tests/test_context_processors.py')
-rw-r--r--tests/auth_tests/test_context_processors.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auth_tests/test_context_processors.py b/tests/auth_tests/test_context_processors.py
index ab621313e8..7e6c6a556e 100644
--- a/tests/auth_tests/test_context_processors.py
+++ b/tests/auth_tests/test_context_processors.py
@@ -133,7 +133,7 @@ class AuthContextProcessorTests(TestCase):
"""
The lazy objects returned behave just like the wrapped objects.
"""
- # These are 'functional' level tests for common use cases. Direct
+ # These are 'functional' level tests for common use cases. Direct
# testing of the implementation (SimpleLazyObject) is in the 'utils'
# tests.
self.client.login(username="super", password="secret")
@@ -148,7 +148,7 @@ class AuthContextProcessorTests(TestCase):
# A Q() comparing a user and with another Q() (in an AND or OR fashion).
Q(user=response.context["user"]) & Q(someflag=True)
- # Tests for user equality. This is hard because User defines
+ # Tests for user equality. This is hard because User defines
# equality in a non-duck-typing way
# See bug #12060
self.assertEqual(response.context["user"], user)