diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-01-07 22:02:01 -0800 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-01-07 22:02:01 -0800 |
commit | e95fd0b411f0fb8a1725ed46ace9fd483e9581e4 (patch) | |
tree | 8e05cfa6767f2f3801c5abb5f4e8c2ee397aa8d6 /Doc/library/unittest.rst | |
parent | 3b1a8b3bbe2ff77975a13255c23a0f0bb4d55ebe (diff) | |
parent | 8a6ddb98e667421520f7b60cd62849fba90a4799 (diff) | |
download | cpython-git-e95fd0b411f0fb8a1725ed46ace9fd483e9581e4.tar.gz |
merge 3.4 (#26046)
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r-- | Doc/library/unittest.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index ff9cc22d13..6caf552515 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 |