gh-130106: Fix a typo in unittest.mock doc (#130107)

This commit is contained in:
Srinivas Reddy Thatiparthy (తాటిపర్తి శ్రీనివాస్ రెడ్డి) 2025-02-15 09:00:12 +05:30 committed by GitHub
parent 39cd9728a6
commit d2e60d8e59
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2008,7 +2008,7 @@ Imagine we have a project that we want to test with the following structure::
Now we want to test ``some_function`` but we want to mock out ``SomeClass`` using
:func:`patch`. The problem is that when we import module b, which we will have to
do then it imports ``SomeClass`` from module a. If we use :func:`patch` to mock out
do when it imports ``SomeClass`` from module a. If we use :func:`patch` to mock out
``a.SomeClass`` then it will have no effect on our test; module b already has a
reference to the *real* ``SomeClass`` and it looks like our patching had no
effect.