diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-11-09 19:50:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-09 19:50:52 (GMT) |
commit | aa4f9a23932fbb298102e2ffa00021a8ddd2ea1c (patch) | |
tree | f02f1a813242cbe0d6150d824cf2747cd1a445ca /Doc/library | |
parent | 384d5523c42fdabce98c0cac67fc7c8e2f8f4904 (diff) | |
download | cpython-aa4f9a23932fbb298102e2ffa00021a8ddd2ea1c.zip cpython-aa4f9a23932fbb298102e2ffa00021a8ddd2ea1c.tar.gz cpython-aa4f9a23932fbb298102e2ffa00021a8ddd2ea1c.tar.bz2 |
Correct a typo in the Unittest documentation (GH-10397)
Co-Authored-By: maggyero <gery.ogam@gmail.com>
(cherry picked from commit 009b2f02049eda3b29d4f4f743e51df106686375)
Co-authored-by: Géry Ogam <gery.ogam@gmail.com>
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 a43e945..3a8af0c 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -588,7 +588,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. |