diff options
author | Géry Ogam <gery.ogam@gmail.com> | 2018-11-09 19:34:54 (GMT) |
---|---|---|
committer | Ned Deily <nad@python.org> | 2018-11-09 19:34:54 (GMT) |
commit | 009b2f02049eda3b29d4f4f743e51df106686375 (patch) | |
tree | 4ea32ee0c60c1370a579cb48317504e2e0d4d6a8 /Doc/library/unittest.rst | |
parent | d17a693fa08ce9f2d35acbb1f76e20bdae3e01da (diff) | |
download | cpython-009b2f02049eda3b29d4f4f743e51df106686375.zip cpython-009b2f02049eda3b29d4f4f743e51df106686375.tar.gz cpython-009b2f02049eda3b29d4f4f743e51df106686375.tar.bz2 |
Correct a typo in the Unittest documentation (GH-10397)
Co-Authored-By: maggyero <gery.ogam@gmail.com>
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 c401908..8afbee6 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -607,7 +607,7 @@ Distinguishing test iterations using subtests .. versionadded:: 3.4 -When some of your tests differ only by a some very small differences, for +When there are very small differences among your tests, for instance some parameters, unittest allows you to distinguish them inside the body of a test method using the :meth:`~TestCase.subTest` context manager. |