From: Michael Foord Date: Thu, 29 Mar 2012 12:46:50 +0000 (+0100) Subject: Fix typo in unittest.mock docs X-Git-Tag: v3.3.0a2~30^2~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e55f6636cc519ab51734bc0c1578391a23c2d2ef;p=python Fix typo in unittest.mock docs --- diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst index 8bb37dc7a3..df03164e10 100644 --- a/Doc/library/unittest.mock.rst +++ b/Doc/library/unittest.mock.rst @@ -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)