summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJozef <knaperek@users.noreply.github.com>2021-03-17 14:06:48 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-03-17 18:49:53 +0100
commit3ff859b7891fb3629ef7397ff5055f9721ec725d (patch)
treea985857d2a9483f817fb30c27089456a73c35028
parent4aba70900ccdc71544d150f65e432056564d01c7 (diff)
downloaddjango-3ff859b7891fb3629ef7397ff5055f9721ec725d.tar.gz
[3.2.x] Fixed typo in docs/topics/testing/advanced.txt.
Backport of 6993e1bf6dff04b6e3ab284b154397b341463b50 from main
-rw-r--r--docs/topics/testing/advanced.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/testing/advanced.txt b/docs/topics/testing/advanced.txt
index e0b9717308..c8050e636e 100644
--- a/docs/topics/testing/advanced.txt
+++ b/docs/topics/testing/advanced.txt
@@ -507,8 +507,8 @@ Defining a test runner
A test runner is a class defining a ``run_tests()`` method. Django ships
with a ``DiscoverRunner`` class that defines the default Django testing
behavior. This class defines the ``run_tests()`` entry point, plus a
-selection of other methods that are used to by ``run_tests()`` to set up,
-execute and tear down the test suite.
+selection of other methods that are used by ``run_tests()`` to set up, execute
+and tear down the test suite.
.. class:: DiscoverRunner(pattern='test*.py', top_level=None, verbosity=1, interactive=True, failfast=False, keepdb=False, reverse=False, debug_mode=False, debug_sql=False, test_name_patterns=None, pdb=False, buffer=False, enable_faulthandler=True, timing=True, **kwargs)