We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 068f38b commit c21246fCopy full SHA for c21246f
1 file changed
tests/end_of_file_fixer_test.py
@@ -18,6 +18,7 @@
18
(b'foo\n\n\n', 1, b'foo\n'),
19
(b'\xe2\x98\x83', 1, b'\xe2\x98\x83\n'),
20
(b'foo\r\n', 0, b'foo\r\n'),
21
+ (b'foo\r\nbar', 1, b'foo\r\nbar\r\n'),
22
(b'foo\r\n\r\n\r\n', 1, b'foo\r\n'),
23
(b'foo\r', 0, b'foo\r'),
24
(b'foo\r\r\r\r', 1, b'foo\r'),
0 commit comments