more pep8 fixes

This commit is contained in:
Ronny Pfannschmidt 2015-09-13 21:49:01 +02:00
parent cd475c7b27
commit e0645564fe
1 changed files with 2 additions and 2 deletions

View File

@ -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.
"""