summaryrefslogtreecommitdiffstats
path: root/Doc/library/unittest.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-01-08 06:01:26 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-01-08 06:01:26 (GMT)
commitc6fa90c7caa8b75794c7036a2aa6329612314b7e (patch)
tree916a0694299754253ea44eb4eef0ecc279efa469 /Doc/library/unittest.rst
parent6b51ddfa2262ba1883d2c2eceb7fa3afd6a24b5d (diff)
downloadcpython-c6fa90c7caa8b75794c7036a2aa6329612314b7e.zip
cpython-c6fa90c7caa8b75794c7036a2aa6329612314b7e.tar.gz
cpython-c6fa90c7caa8b75794c7036a2aa6329612314b7e.tar.bz2
fix typo in unittest docs (closes #26046)
Patch from Upendra Kumar.
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r--Doc/library/unittest.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index ca91cd7..96aa2bc 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -147,7 +147,7 @@ and produce a report.
The :meth:`~TestCase.setUp` and :meth:`~TestCase.tearDown` methods allow you
to define instructions that will be executed before and after each test method.
-They are covered in more details in the section :ref:`organizing-tests`.
+They are covered in more detail in the section :ref:`organizing-tests`.
The final block shows a simple way to run the tests. :func:`unittest.main`
provides a command-line interface to the test script. When run from the command