Skip to content

Commit

Permalink
Correct trivial grammar in reset_mock docs (pythonGH-101861)
Browse files Browse the repository at this point in the history
(cherry picked from commit a1f08f5)

Co-authored-by: Steve Kowalik <steven@wedontsleep.org>
  • Loading branch information
s-t-e-v-e-n-k authored and miss-islington committed Feb 13, 2023
1 parent 6c0e3dc commit cb2ab98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Doc/library/unittest.mock.rst
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ the *new_callable* argument to :func:`patch`.
False

.. versionchanged:: 3.6
Added two keyword only argument to the reset_mock function.
Added two keyword-only arguments to the reset_mock function.

This can be useful where you want to make a series of assertions that
reuse the same object. Note that :meth:`reset_mock` *doesn't* clear the
Expand All @@ -416,8 +416,8 @@ the *new_callable* argument to :func:`patch`.
parameter as ``True``. Child mocks and the return value mock
(if any) are reset as well.

.. note:: *return_value*, and :attr:`side_effect` are keyword only
argument.
.. note:: *return_value*, and :attr:`side_effect` are keyword-only
arguments.


.. method:: mock_add_spec(spec, spec_set=False)
Expand Down

0 comments on commit cb2ab98

Please sign in to comment.