diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-01-08 06:02:13 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-01-08 06:02:13 (GMT) |
commit | 3407473f91a931f96f358aa724ee84c49545da45 (patch) | |
tree | d92e67649b0aa337d474272832158f3faa6ae580 /Doc/library | |
parent | 5db60aa84ea55b7b5623327551d41d51ea22c528 (diff) | |
parent | e95fd0b411f0fb8a1725ed46ace9fd483e9581e4 (diff) | |
download | cpython-3407473f91a931f96f358aa724ee84c49545da45.zip cpython-3407473f91a931f96f358aa724ee84c49545da45.tar.gz cpython-3407473f91a931f96f358aa724ee84c49545da45.tar.bz2 |
merge 3.5 (#26046)
Diffstat (limited to 'Doc/library')
-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 ff9cc22..6caf552 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 |