summaryrefslogtreecommitdiff
path: root/docs/topics/testing
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:06:38 -0400
commite7b703d050ef4d40c25a5c65bf1fd5120d450831 (patch)
tree77312b4161af215fd868f715baa45f4da865441f /docs/topics/testing
parent6a7b27c74309fff77db3aab49eb6fc7ce9f37fb4 (diff)
[1.8.x] Fixed typo in docs/topics/testing/tools.txt
Backport of c21b832c1260c6ad4bd8527338a65f6d8930feaf from master
Diffstat (limited to 'docs/topics/testing')
-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 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
~~~~~~~~~~~~~~~~~~~