]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Correct a typo in the Unittest documentation (GH-10397)
authorGéry Ogam <gery.ogam@gmail.com>
Fri, 9 Nov 2018 19:34:54 +0000 (20:34 +0100)
committerNed Deily <nad@python.org>
Fri, 9 Nov 2018 19:34:54 +0000 (14:34 -0500)
Co-Authored-By: maggyero <gery.ogam@gmail.com>
Doc/library/unittest.rst

index c4019088c79fac19824166ae9bdf47b4635eed6c..8afbee642620be98ba632f29e84e46f89007d2a5 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.