From e0645564fe3b36aa3a700305c030232223a10b4a Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Sun, 13 Sep 2015 21:49:01 +0200 Subject: [PATCH] more pep8 fixes --- _pytest/monkeypatch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_pytest/monkeypatch.py b/_pytest/monkeypatch.py index 07998650a..c9a2132b9 100644 --- a/_pytest/monkeypatch.py +++ b/_pytest/monkeypatch.py @@ -193,12 +193,12 @@ class monkeypatch: undo stack. Calling it a second time has no effect unless you do more monkeypatching after the undo call. - There is generally no need to call `undo()`, since it is + There is generally no need to call `undo()`, since it is called automatically during tear-down. Note that the same `monkeypatch` fixture is used across a single test function invocation. If `monkeypatch` is used both by - the test function itself and one of the test fixtures, + the test function itself and one of the test fixtures, calling `undo()` will undo all of the changes made in both functions. """