summaryrefslogtreecommitdiffstats
path: root/Doc
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)
commit8a6ddb98e667421520f7b60cd62849fba90a4799 (patch)
tree0e50309f971f47dff312694d015566b26e9b3d61 /Doc
parent9c39b67ca5474791409ba170e24f4fd96ea1445b (diff)
downloadcpython-8a6ddb98e667421520f7b60cd62849fba90a4799.zip
cpython-8a6ddb98e667421520f7b60cd62849fba90a4799.tar.gz
cpython-8a6ddb98e667421520f7b60cd62849fba90a4799.tar.bz2
fix typo in unittest docs (closes #26046)
Patch from Upendra Kumar.
Diffstat (limited to 'Doc')
-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 a8d9f53..a896fc1 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -118,7 +118,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