Fix typo in unittest.mock docs

This commit is contained in:
Michael Foord 2012-03-29 13:46:50 +01:00
parent eac0939ddd
commit e55f6636cc
1 changed files with 1 additions and 1 deletions

View File

@ -1714,7 +1714,7 @@ call
`call` is a helper object for making simpler assertions, for comparing
with :attr:`~Mock.call_args`, :attr:`~Mock.call_args_list`,
:attr:`~Mock.mock_calls` and:attr: `~Mock.method_calls`. `call` can also be
:attr:`~Mock.mock_calls` and :attr: `~Mock.method_calls`. `call` can also be
used with :meth:`~Mock.assert_has_calls`.
>>> m = MagicMock(return_value=None)