diff options
| author | Gary Wilson Jr <gary.wilson@gmail.com> | 2008-01-28 02:15:00 +0000 |
|---|---|---|
| committer | Gary Wilson Jr <gary.wilson@gmail.com> | 2008-01-28 02:15:00 +0000 |
| commit | 80f5cafbc4c4d284d641310818f8144907498494 (patch) | |
| tree | c6aa3d2c3c02becde2710aad1029fa678e9a5d52 | |
| parent | 755278253ee792fc8a7589081261c6f0a66e1423 (diff) | |
Fixed typo in testcases module.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7032 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/test/testcases.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/testcases.py b/django/test/testcases.py index 5b5c6f67ec..f524f1c34d 100644 --- a/django/test/testcases.py +++ b/django/test/testcases.py @@ -108,7 +108,7 @@ class TestCase(unittest.TestCase): def assertContains(self, response, text, count=None, status_code=200): """ - Asserts that a response indicates that a page was retreived + Asserts that a response indicates that a page was retrieved successfully, (i.e., the HTTP status code was as expected), and that ``text`` occurs ``count`` times in the content of the response. If ``count`` is None, the count doesn't matter - the assertion is true |
