Commit e7b703d0 authored by Ian Foote's avatar Ian Foote Committed by Tim Graham
Browse files

[1.8.x] Fixed typo in docs/topics/testing/tools.txt

Backport of c21b832c from master
parent 6a7b27c7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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
~~~~~~~~~~~~~~~~~~~