diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-07-20 15:40:54 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-07-20 15:40:54 +0000 |
| commit | 07dd6b2895c413c24936895da586dcb88bbc0f57 (patch) | |
| tree | bc45d8db548a35b99c54600e0c4fde9ca87b35bc | |
| parent | f7ef0a92da23168f8ece5339bd32f67b7ee5ff1a (diff) | |
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
| -rw-r--r-- | tests/regressiontests/test_client_regress/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
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') |
