From afd040d4d3a06fe92e3080870b2ff2095ce86a75 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Thu, 3 Mar 2011 15:04:39 +0000 Subject: Updated test assertions that have been deprecated by the move to unittest2. In summary, this means: assert_ -> assertTrue assertEquals -> assertEqual failUnless -> assertTrue For full details, see http://www.voidspace.org.uk/python/articles/unittest2.shtml#deprecations git-svn-id: http://code.djangoproject.com/svn/django/trunk@15728 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt index 795f041fb9..41768576af 100644 --- a/docs/topics/testing.txt +++ b/docs/topics/testing.txt @@ -1079,7 +1079,7 @@ The following is a simple unit test using the request factory:: # Test my_view() as if it were deployed at /customer/details response = my_view(request) - self.assertEquals(response.status_code, 200) + self.assertEqual(response.status_code, 200) TestCase -------- -- cgit v1.3