Deactivate the ``capsys`` or ``capfd`` fixture of this item, if any.
(self)
| 713 | self._capture_fixture._start() |
| 714 | |
| 715 | def deactivate_fixture(self) -> None: |
| 716 | """Deactivate the ``capsys`` or ``capfd`` fixture of this item, if any.""" |
| 717 | if self._capture_fixture: |
| 718 | self._capture_fixture.close() |
| 719 | |
| 720 | def suspend_fixture(self) -> None: |
| 721 | if self._capture_fixture: |