Skip to content

Commit 56c2d31

Browse files
committed
Switching to third person
1 parent 14c6222 commit 56c2d31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/library/unittest.mock-examples.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -864,9 +864,9 @@ Here's one solution that uses the :attr:`~Mock.side_effect`
864864
functionality. If you provide a ``side_effect`` function for a mock then
865865
``side_effect`` will be called with the same args as the mock. This gives us an
866866
opportunity to copy the arguments and store them for later assertions. In this
867-
example I'm using *another* mock to store the arguments so that I can use the
867+
example we're using *another* mock to store the arguments so that we can use the
868868
mock methods for doing the assertion. Again a helper function sets this up for
869-
me. ::
869+
us. ::
870870

871871
>>> from copy import deepcopy
872872
>>> from unittest.mock import Mock, patch, DEFAULT

0 commit comments

Comments
 (0)