diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2009-06-30 22:51:06 +0000 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2009-06-30 22:51:06 +0000 |
commit | c2f5a595bafbbc7fa86b008075f09f411c9abaaf (patch) | |
tree | 630291976e629c98fb419139cba581d618d90cce | |
parent | 31f42ab254e4a4baf120b996f0b9a85deacc744d (diff) | |
download | cpython-git-c2f5a595bafbbc7fa86b008075f09f411c9abaaf.tar.gz |
Fixed defaultTestCase -> defaultTestResult
-rw-r--r-- | Doc/library/macostools.rst | 4 | ||||
-rw-r--r-- | Doc/library/unittest.rst | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/macostools.rst b/Doc/library/macostools.rst index 96d289749a..e2ec01c23d 100644 --- a/Doc/library/macostools.rst +++ b/Doc/library/macostools.rst @@ -59,8 +59,8 @@ documentation. Hence, aliases created with :func:`mkalias` could conceivably have incompatible behaviour in some cases. -:mod:`findertools` --- The :program:`finder`'s Apple Events interface -===================================================================== +:mod:`findertools` --- The :program:`finder`\'s Apple Events interface +====================================================================== .. module:: findertools :platform: Mac diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 2e4590c294..25d792dcc5 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -651,8 +651,8 @@ Test cases Run the test, collecting the result into the test result object passed as *result*. If *result* is omitted or :const:`None`, a temporary result - object is created (by calling the :meth:`defaultTestCase` method) and - used; this result object is not returned to :meth:`run`'s caller. + object is created (by calling the :meth:`defaultTestResult` method) and + used. The result object is not returned to :meth:`run`'s caller. The same effect may be had by simply calling the :class:`TestCase` instance. |