1
0
mirror of https://github.com/django/django.git synced 2025-10-24 14:16:09 +00:00

Fixed typos in code comments.

This commit is contained in:
Adam Taylor
2015-01-20 07:54:12 -07:00
committed by Tim Graham
parent dccf41cff0
commit 039465a6a7
26 changed files with 28 additions and 28 deletions

View File

@@ -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/')