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

Fixed typo in docs/topics/testing/tools.txt

parent 67c063e6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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
~~~~~~~~~~~~~~~~~~~