diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-03-26 20:05:50 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-03-26 20:05:50 (GMT) |
commit | 47d9738b0fb7b1a255ee33c2570caad4469c8469 (patch) | |
tree | 1d419a74be93d4d92dddb89fde7a3d1b968af687 /Doc/library/unittest.rst | |
parent | c3141a6e9607f41ad32ebb0002d009a3728be4fc (diff) | |
download | cpython-47d9738b0fb7b1a255ee33c2570caad4469c8469.zip cpython-47d9738b0fb7b1a255ee33c2570caad4469c8469.tar.gz cpython-47d9738b0fb7b1a255ee33c2570caad4469c8469.tar.bz2 |
rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r-- | Doc/library/unittest.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index f437c8d..4f321dc 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -576,7 +576,7 @@ Test cases instance. - .. method:: skip(reason) + .. method:: skipTest(reason) Calling this during the a test method or :meth:`setUp` skips the current test. See :ref:`unittest-skipping` for more information. |