diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/testing.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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 -------- |
