diff --git a/CHANGELOG b/CHANGELOG index d24d2c02f..8a02ee465 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -10,7 +10,6 @@ Changes between 2.2.1 and 2.2.2.dev - fix issue106: allow parametrize to be applied multiple times e.g. from module, class and at function level. - add chdir method to monkeypatch funcarg -- add "mp" funcargs as a shortcut for "monkeypatch" - fix crash resulting from calling monkeypatch undo a second time Changes between 2.2.0 and 2.2.1 diff --git a/doc/monkeypatch.txt b/doc/monkeypatch.txt index 1f9090ce4..74c63b850 100644 --- a/doc/monkeypatch.txt +++ b/doc/monkeypatch.txt @@ -37,11 +37,6 @@ Here our test function monkeypatches ``os.path.expanduser`` and then calls into an function that calls it. After the test function finishes the ``os.path.expanduser`` modification will be undone. -.. note:: - - As with version 2.2.2 there is a ``mp`` function argument - which is a shortcut for "monkeypatch". - Method reference of the monkeypatch function argument -----------------------------------------------------