[Python-checkins] doc: fix a typo in unittest.mock.rst (GH-30227)

miss-islington webhook-mailer at python.org
Sun Dec 26 06:51:55 EST 2021


https://github.com/python/cpython/commit/cfdb2302f48b4da5cf4ee78c092edf1f447ae494
commit: cfdb2302f48b4da5cf4ee78c092edf1f447ae494
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2021-12-26T03:51:42-08:00
summary:

doc: fix a typo in unittest.mock.rst (GH-30227)

(cherry picked from commit 10bf0a9ac3c9bbde2fa8989d9435462f0e7da545)

Co-authored-by: Joe <nigelchiang at outlook.com>

files:
M Doc/library/unittest.mock.rst

diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst
index d0640b42ef40a..4d74f9cee84ee 100644
--- a/Doc/library/unittest.mock.rst
+++ b/Doc/library/unittest.mock.rst
@@ -1516,7 +1516,7 @@ attribute in a class) that does not exist will fail with :exc:`AttributeError`::
     >>> test()
     Traceback (most recent call last):
       ...
-    AttributeError: <module 'sys' (built-in)> does not have the attribute 'non_existing'
+    AttributeError: <module 'sys' (built-in)> does not have the attribute 'non_existing_attribute'
 
 but adding ``create=True`` in the call to :func:`patch` will make the previous example
 work as expected::



More information about the Python-checkins mailing list