summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-01-29 08:45:40 -0700
committerTim Graham <timograham@gmail.com>2013-01-29 10:58:24 -0700
commit5da6ce11edb60319c014c07c40b03674ea89de4c (patch)
treec59913f7b566f07a9e0ce26e3f2d5ed677507a3a /tests
parentf6075b0596e20951bd8232f09d97fb7fac08308c (diff)
[1.5.x] Fixed typos in docs and comments
Backport of ee26797cff from master
Diffstat (limited to 'tests')
-rw-r--r--tests/regressiontests/admin_views/tests.py2
-rw-r--r--tests/regressiontests/builtin_server/tests.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/regressiontests/admin_views/tests.py b/tests/regressiontests/admin_views/tests.py
index 1eddb4b743..6f61b5d51d 100644
--- a/tests/regressiontests/admin_views/tests.py
+++ b/tests/regressiontests/admin_views/tests.py
@@ -2454,7 +2454,7 @@ class TestCustomChangeList(TestCase):
self.assertEqual(response.status_code, 302) # redirect somewhere
# Hit the page once to get messages out of the queue message list
response = self.client.get('/test_admin/%s/admin_views/gadget/' % self.urlbit)
- # Ensure that that data is still not visible on the page
+ # Ensure that data is still not visible on the page
response = self.client.get('/test_admin/%s/admin_views/gadget/' % self.urlbit)
self.assertEqual(response.status_code, 200)
self.assertNotContains(response, 'First Gadget')
diff --git a/tests/regressiontests/builtin_server/tests.py b/tests/regressiontests/builtin_server/tests.py
index c8dc77e42e..041bb3c319 100644
--- a/tests/regressiontests/builtin_server/tests.py
+++ b/tests/regressiontests/builtin_server/tests.py
@@ -7,7 +7,7 @@ from django.utils.unittest import TestCase
#
# Tests for #9659: wsgi.file_wrapper in the builtin server.
-# We need to mock a couple of of handlers and keep track of what
+# We need to mock a couple of handlers and keep track of what
# gets called when using a couple kinds of WSGI apps.
#