From 07dd6b2895c413c24936895da586dcb88bbc0f57 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 20 Jul 2007 15:40:54 +0000 Subject: [PATCH] Fixed negligible typo in docstring in tests/regressiontests/test_client_regress/models.py from [5731] git-svn-id: http://code.djangoproject.com/svn/django/trunk@5733 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/test_client_regress/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/regressiontests/test_client_regress/models.py b/tests/regressiontests/test_client_regress/models.py index 5e1c562daa..8944942da0 100644 --- a/tests/regressiontests/test_client_regress/models.py +++ b/tests/regressiontests/test_client_regress/models.py @@ -8,7 +8,7 @@ import os class AssertContainsTests(TestCase): def test_contains(self): - "Reponses can be inspected for content, including counting repeated substrings" + "Responses can be inspected for content, including counting repeated substrings" response = self.client.get('/test_client_regress/no_template_view/') self.assertContains(response, 'once')