Fix CaptureManager.__repr__ ()

This commit is contained in:
Daniel Hahler 2020-02-10 13:03:05 +01:00 committed by GitHub
parent b4ace46c42
commit f9dd58000a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
src/_pytest

View File

@ -85,7 +85,7 @@ class CaptureManager:
self._capture_fixture = None # type: Optional[CaptureFixture]
def __repr__(self):
return "<CaptureManager _method={!r} _global_capturing={!r} _item_capture={!r}>".format(
return "<CaptureManager _method={!r} _global_capturing={!r} _capture_fixture={!r}>".format(
self._method, self._global_capturing, self._capture_fixture
)