bpo-44679: [doc] fix typo in unittest.mock.rst (GH-27618)

This commit is contained in:
Jack DeVries 2021-08-05 16:48:18 -04:00 committed by GitHub
parent f5cbea6b1b
commit 938e84b4fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2208,7 +2208,7 @@ In this example we monkey patch ``method`` to return ``sentinel.some_object``:
>>> real.method.return_value = sentinel.some_object
>>> result = real.method()
>>> assert result is sentinel.some_object
>>> sentinel.some_object
>>> result
sentinel.some_object