]> granicus.if.org Git - python/commitdiff
Fix typo in example (#20963)
authorÉric Araujo <merwok@netwok.org>
Mon, 17 Mar 2014 20:48:13 +0000 (16:48 -0400)
committerÉric Araujo <merwok@netwok.org>
Mon, 17 Mar 2014 20:48:13 +0000 (16:48 -0400)
Doc/library/unittest.mock-examples.rst

index c5fa365afd5d2be246b93615da2d76a0ffb8a1bc..1c43bfe2639429001e4b7a3a1c2a4aed8c71232c 100644 (file)
@@ -934,8 +934,8 @@ After the `MagicMock` has been used we can use attributes like
     the magic methods you specifically want:
 
         >>> mock = Mock()
-        >>> mock.__setitem__ = Mock(side_effect=getitem)
-        >>> mock.__getitem__ = Mock(side_effect=setitem)
+        >>> mock.__getitem__ = Mock(side_effect=getitem)
+        >>> mock.__setitem__ = Mock(side_effect=setitem)
 
     A *third* option is to use `MagicMock` but passing in `dict` as the `spec`
     (or `spec_set`) argument so that the `MagicMock` created only has