diff options
author | Joan Massich <mailsik@gmail.com> | 2019-03-17 23:34:22 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2019-03-17 23:34:22 (GMT) |
commit | dc69f69f14fb89511d018a3927fc6378a58d2def (patch) | |
tree | 541f9ce43957e33ae1fce8a73fcc840068db32ed /Doc/library/unittest.mock.rst | |
parent | f683f464259715d620777d7ed568e701337a703a (diff) | |
download | cpython-dc69f69f14fb89511d018a3927fc6378a58d2def.zip cpython-dc69f69f14fb89511d018a3927fc6378a58d2def.tar.gz cpython-dc69f69f14fb89511d018a3927fc6378a58d2def.tar.bz2 |
Fix typo in unittest.mock documentation: manger -> manager (GH-12352)
Diffstat (limited to 'Doc/library/unittest.mock.rst')
-rw-r--r-- | Doc/library/unittest.mock.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst index c011e54..ff7a54c 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']) |