summaryrefslogtreecommitdiff
path: root/tests/admin_views
diff options
context:
space:
mode:
authorAdam Taylor <ataylor32@gmail.com>2015-01-20 07:54:12 -0700
committerTim Graham <timograham@gmail.com>2015-01-20 12:18:29 -0500
commit45aaced91e4789c3a08b17f0908010923361dbec (patch)
treef15fcd7d2a029c173f402083b51d7419b0031008 /tests/admin_views
parent90d9bf5ba46f806e7d4a7d19023f8d19028c4a27 (diff)
[1.8.x] Fixed typos in code comments.
Backport of 039465a6a7a18f48ea77ceadb6949990c0ec92e1 from master
Diffstat (limited to 'tests/admin_views')
-rw-r--r--tests/admin_views/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/admin_views/tests.py b/tests/admin_views/tests.py
index 0c28ecc029..a58474575e 100644
--- a/tests/admin_views/tests.py
+++ b/tests/admin_views/tests.py
@@ -1783,7 +1783,7 @@ class AdminViewsNoUrlTest(TestCase):
self.client.get('/test_admin/admin/')
r = self.client.post(reverse('admin:login'), self.changeuser_login)
r = self.client.get('/test_admin/admin/')
- # we shouldn' get an 500 error caused by a NoReverseMatch
+ # we shouldn't get a 500 error caused by a NoReverseMatch
self.assertEqual(r.status_code, 200)
self.client.get('/test_admin/admin/logout/')