diff options
author | annonm <annonm@gmail.com> | 2022-10-03 13:35:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-03 13:35:40 (GMT) |
commit | e6f9ec5c031bd996fcd5f463c407beef0b743b49 (patch) | |
tree | 7560b77329346498a8d598062b9d155157f94b99 | |
parent | 0ee9619a4cba58730c45e65d22288fadbf7680de (diff) | |
download | cpython-e6f9ec5c031bd996fcd5f463c407beef0b743b49.zip cpython-e6f9ec5c031bd996fcd5f463c407beef0b743b49.tar.gz cpython-e6f9ec5c031bd996fcd5f463c407beef0b743b49.tar.bz2 |
Fix typo in unittest docs (#97742)
-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 38be6b8..7f48146 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -1760,7 +1760,7 @@ Loading and running tests A list of the non-fatal errors encountered while loading tests. Not reset by the loader at any point. Fatal errors are signalled by the relevant - a method raising an exception to the caller. Non-fatal errors are also + method raising an exception to the caller. Non-fatal errors are also indicated by a synthetic test that will raise the original error when run. |