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:03 -0500
commit039465a6a7a18f48ea77ceadb6949990c0ec92e1 (patch)
treecba4538131d680c040535e9ffe3af7c1db034655 /tests/admin_views
parentdccf41cff0f46a94aa1d853d1bad9052079bb454 (diff)
Fixed typos in code comments.
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 486680fda7..090546c474 100644
--- a/tests/admin_views/tests.py
+++ b/tests/admin_views/tests.py
@@ -1788,7 +1788,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/')