]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix reST markup in unittest documentation (GH-8665)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 3 Aug 2018 22:17:15 +0000 (15:17 -0700)
committerBerker Peksag <berker.peksag@gmail.com>
Fri, 3 Aug 2018 22:17:15 +0000 (01:17 +0300)
(cherry picked from commit 2e5566d9e774dcde81e8139b486730917816e045)

Co-authored-by: Berker Peksag <berker.peksag@gmail.com>
Doc/library/unittest.rst

index f0de85f76157f421368aa4d1227c254bd626629a..16e1049b7a184be75ae254c1bb54e94eaa80f647 100644 (file)
@@ -393,7 +393,7 @@ run whether the test method succeeded or not.
 Such a working environment for the testing code is called a
 :dfn:`test fixture`.  A new TestCase instance is created as a unique
 test fixture used to execute each individual test method.  Thus
-`~TestCase.setUp`, `~TestCase.tearDown`, and `~TestCase.__init__`
+:meth:`~TestCase.setUp`, :meth:`~TestCase.tearDown`, and :meth:`~TestCase.__init__`
 will be called once per test.
 
 It is recommended that you use TestCase implementations to group tests together