diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-05-11 22:23:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-11 22:23:40 (GMT) |
commit | 1e4ca09d825cc8059bbf80c8137164816b84cfe7 (patch) | |
tree | 8a629846cf47e8249d3b10ac07b54704ac0ff168 /Doc | |
parent | 6fc6f4366d02412e3424d2a6da43a28d8f479d7b (diff) | |
download | cpython-1e4ca09d825cc8059bbf80c8137164816b84cfe7.zip cpython-1e4ca09d825cc8059bbf80c8137164816b84cfe7.tar.gz cpython-1e4ca09d825cc8059bbf80c8137164816b84cfe7.tar.bz2 |
bpo-10548: expectedFailure does not apply to fixtures (GH-23201) (#26044)
(cherry picked from commit 23ae2c3bacc167f7bbfea1846bbbc9dde63a1bfd)
Co-authored-by: Irit Katriel <iritkatriel@yahoo.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/unittest.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 0c29408..99c2f6e 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -597,8 +597,9 @@ The following decorators and exception implement test skipping and expected fail .. decorator:: expectedFailure Mark the test as an expected failure or error. If the test fails or errors - it will be considered a success. If the test passes, it will be considered - a failure. + in the test function itself (rather than in one of the :dfn:`test fixture` + methods) then it will be considered a success. If the test passes, it will + be considered a failure. .. exception:: SkipTest(reason) |