bpo-43400: Remove "easy to use" from mock docs (GH-24752)

This commit is contained in:
Eddie Peters 2021-03-04 18:39:29 -05:00 committed by GitHub
parent 6714825414
commit 2122e48630
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,7 +30,7 @@ module and class level attributes within the scope of a test, along with
some examples of how to use :class:`Mock`, :class:`MagicMock` and
:func:`patch`.
Mock is very easy to use and is designed for use with :mod:`unittest`. Mock
Mock is designed for use with :mod:`unittest` and
is based on the 'action -> assertion' pattern instead of 'record -> replay'
used by many mocking frameworks.