Get the output assuming it was written as UTF-8 bytes
(self)
| 214 | return data.replace(b'\r\n', b'\n') |
| 215 | |
| 216 | def get(self) -> str: |
| 217 | """Get the output assuming it was written as UTF-8 bytes""" |
| 218 | return self.get_bytes().decode() |
| 219 | |
| 220 | |
| 221 | @pytest.fixture |
no test coverage detected