summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/testing/overview.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/topics/testing/overview.txt b/docs/topics/testing/overview.txt
index 19fff1ed1c..4c7e67c4b1 100644
--- a/docs/topics/testing/overview.txt
+++ b/docs/topics/testing/overview.txt
@@ -221,13 +221,13 @@ the Django test runner reorders tests in the following way:
* All :class:`~django.test.TestCase` subclasses are run first.
-* Then, all other unittests (including :class:`unittest.TestCase`,
- :class:`~django.test.SimpleTestCase` and
+* Then, all other Django-based tests (test cases based on
+ :class:`~django.test.SimpleTestCase`, including
:class:`~django.test.TransactionTestCase`) are run with no particular
ordering guaranteed nor enforced among them.
-* Then any other tests (e.g. doctests) that may alter the database without
- restoring it to its original state are run.
+* Then any other :class:`unittest.TestCase` tests (including doctests) that may
+ alter the database without restoring it to its original state are run.
.. note::