From e7b703d050ef4d40c25a5c65bf1fd5120d450831 Mon Sep 17 00:00:00 2001 From: Ian Foote Date: Sat, 9 May 2015 12:07:00 +0100 Subject: [PATCH] [1.8.x] Fixed typo in docs/topics/testing/tools.txt Backport of c21b832c1260c6ad4bd8527338a65f6d8930feaf from master --- 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 3a15613bff..681f1cf360 100644 --- a/docs/topics/testing/tools.txt +++ b/docs/topics/testing/tools.txt @@ -625,13 +625,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 ~~~~~~~~~~~~~~~~~~~