]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Correct a typo in the Unittest documentation (GH-10397)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 9 Nov 2018 19:43:43 +0000 (11:43 -0800)
committerGitHub <noreply@github.com>
Fri, 9 Nov 2018 19:43:43 +0000 (11:43 -0800)
Co-Authored-By: maggyero <gery.ogam@gmail.com>
(cherry picked from commit 009b2f02049eda3b29d4f4f743e51df106686375)

Co-authored-by: Géry Ogam <gery.ogam@gmail.com>
Doc/library/unittest.rst

index 1153459029ceaa8c667fdd406d0d58c8a9189caa..fb5bd2b7648e848f16be9fa42f63a7ef5b03c71f 100644 (file)
@@ -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.