summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorIan Foote <ian@feete.org>2015-05-09 12:07:00 +0100
committerTim Graham <timograham@gmail.com>2015-05-09 18:03:25 -0400
commitc21b832c1260c6ad4bd8527338a65f6d8930feaf (patch)
treea6f000a448e5e53632545c60a206e9cb6f56c281 /docs
parent67c063e6d55131358b81fc28bc7f62ca24295157 (diff)
Fixed typo in docs/topics/testing/tools.txt
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/testing/tools.txt4
1 files 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
~~~~~~~~~~~~~~~~~~~