Fix CRLF lines

This commit is contained in:
mtkennerly 2018-10-13 07:26:53 -04:00
parent e01bc2c2a1
commit abd3d0ec3f
2 changed files with 5 additions and 2 deletions

View file

@ -15,6 +15,8 @@ TESTS = (
(b'foo', 1, b'foo\n'),
(b'foo\n\n\n', 1, b'foo\n'),
(b'\xe2\x98\x83', 1, b'\xe2\x98\x83\n'),
(b'foo\r\n', 1, b'foo\n'),
(b'foo\r\n\r\n', 1, b'foo\n'),
)