summaryrefslogtreecommitdiffstats
path: root/Doc/library/unittest.mock.rst
diff options
context:
space:
mode:
authorMichael Foord <michael@voidspace.org.uk>2012-03-29 12:46:50 (GMT)
committerMichael Foord <michael@voidspace.org.uk>2012-03-29 12:46:50 (GMT)
commite55f6636cc519ab51734bc0c1578391a23c2d2ef (patch)
treee9832431cfeb08d96f0b8d4bf6143b2e5caf6506 /Doc/library/unittest.mock.rst
parenteac0939ddd56f60664de9cb85aa32910d7b22c78 (diff)
downloadcpython-e55f6636cc519ab51734bc0c1578391a23c2d2ef.zip
cpython-e55f6636cc519ab51734bc0c1578391a23c2d2ef.tar.gz
cpython-e55f6636cc519ab51734bc0c1578391a23c2d2ef.tar.bz2
Fix typo in unittest.mock docs
Diffstat (limited to 'Doc/library/unittest.mock.rst')
-rw-r--r--Doc/library/unittest.mock.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst
index 8bb37dc..df03164 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)