Django

Code

Changeset 9429

Show
Ignore:
Timestamp:
11/14/08 01:38:55 (2 months ago)
Author:
mtredinnick
Message:

Fixed #9594 -- Typo fix in the testing example.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/topics/testing.txt

    r9398 r9429  
    10351035 
    10361036            # Test that one message has been sent. 
    1037             self.assertEqual(len(mail.outbox), 1) 
     1037            self.assertEquals(len(mail.outbox), 1) 
    10381038 
    10391039            # Verify that the subject of the first message is correct. 
    1040             self.assertEqual(mail.outbox[0].subject, 'Subject here') 
     1040            self.assertEquals(mail.outbox[0].subject, 'Subject here') 
    10411041 
    10421042As noted :ref:`previously <emptying-test-outbox>`, the test outbox is emptied