]> granicus.if.org Git - python/commitdiff
Fix reST markup in unittest documentation (GH-8665)
authorBerker Peksag <berker.peksag@gmail.com>
Fri, 3 Aug 2018 21:56:55 +0000 (00:56 +0300)
committerGitHub <noreply@github.com>
Fri, 3 Aug 2018 21:56:55 +0000 (00:56 +0300)
Doc/library/unittest.rst

index 086d93782562e3d2b61ad5d1453f5d706ff1b486..224adf08567ec89d8449433abe52afe753615511 100644 (file)
@@ -412,7 +412,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