From: Ezio Melotti Date: Tue, 12 Jan 2016 09:03:31 +0000 (+0200) Subject: #19006: fix wording in unittest docs. X-Git-Tag: v3.6.0a1~787^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f418db2e8cb21638448acbea0ce1d5bbfd0d903e;p=thirdparty%2FPython%2Fcpython.git #19006: fix wording in unittest docs. --- diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 6caf552515bf..9647b4b66536 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -762,8 +762,9 @@ Test cases .. _assert-methods: - The :class:`TestCase` class provides a number of methods to check for and - report failures, such as: + The :class:`TestCase` class provides several assert methods to check for and + report failures. The following table lists the most commonly used methods + (see the tables below for more assert methods): +-----------------------------------------+-----------------------------+---------------+ | Method | Checks that | New in | @@ -884,7 +885,7 @@ Test cases - It is also possible to check the production of exceptions, warnings and + It is also possible to check the production of exceptions, warnings, and log messages using the following methods: +---------------------------------------------------------+--------------------------------------+------------+