From 65fc025c8845a1e10b86a8c9fca5c048d43ad404 Mon Sep 17 00:00:00 2001 From: Joan Massich Date: Fri, 15 Mar 2019 16:56:31 +0100 Subject: [PATCH] DOC: typo --- Doc/library/unittest.mock.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst index c011e54e3e73ec..ff7a54c51fbada 100644 --- a/Doc/library/unittest.mock.rst +++ b/Doc/library/unittest.mock.rst @@ -1440,7 +1440,7 @@ passed by keyword *after* any of the standard arguments created by :func:`patch` >>> test_function() If :func:`patch.multiple` is used as a context manager, the value returned by the -context manger is a dictionary where created mocks are keyed by name:: +context manager is a dictionary where created mocks are keyed by name:: >>> with patch.multiple('__main__', thing=DEFAULT, other=DEFAULT) as values: ... assert 'other' in repr(values['other'])