From c21b832c1260c6ad4bd8527338a65f6d8930feaf Mon Sep 17 00:00:00 2001 From: Ian Foote Date: Sat, 9 May 2015 12:07:00 +0100 Subject: [PATCH] Fixed typo in docs/topics/testing/tools.txt --- docs/topics/testing/tools.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt index fbe12e9117..96824aaeb3 100644 --- a/docs/topics/testing/tools.txt +++ b/docs/topics/testing/tools.txt @@ -619,13 +619,13 @@ then you should use :class:`~django.test.TransactionTestCase` or @classmethod def setUpClass(cls): - super(cls, MyTestCase).setUpClass() # Call parent first + super(MyTestCase, cls).setUpClass() # Call parent first ... @classmethod def tearDownClass(cls): ... - super(cls, MyTestCase).tearDownClass() # Call parent last + super(MyTestCase, cls).tearDownClass() # Call parent last TransactionTestCase ~~~~~~~~~~~~~~~~~~~