From 22d2954438a25456b379d6afa1eef19700b2c47b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9ry=20Ogam?= Date: Fri, 9 Nov 2018 20:34:54 +0100 Subject: [PATCH] Correct a typo in the Unittest documentation (GH-10397) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: maggyero (cherry picked from commit 009b2f02049eda3b29d4f4f743e51df106686375) Co-authored-by: Géry Ogam --- Doc/library/unittest.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index a43e9453239ca8..3a8af0c52a5998 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.