Django

Code

Changeset 7032

Show
Ignore:
Timestamp:
01/27/08 20:15:00 (10 months ago)
Author:
gwilson
Message:

Fixed typo in testcases module.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/test/testcases.py

    r7023 r7032  
    109109    def assertContains(self, response, text, count=None, status_code=200): 
    110110        """ 
    111         Asserts that a response indicates that a page was retreived 
     111        Asserts that a response indicates that a page was retrieved 
    112112        successfully, (i.e., the HTTP status code was as expected), and that 
    113113        ``text`` occurs ``count`` times in the content of the response.