(self)
| 4775 | self._test_decode('hello\r\n', 'hello\n') |
| 4776 | |
| 4777 | def test_decode_one_line_lf(self): |
| 4778 | self._test_decode('hello\n', 'hello\n') |
| 4779 | |
| 4780 | def test_decode_one_line_cr(self): |
| 4781 | self._test_decode('hello\r', 'hello\n') |
nothing calls this directly
no test coverage detected