# HG changeset patch # User Gregory Szorc # Date 1550264827 28800 # Node ID 140b542b0e59750e8dbdb7acca106939140bba2d # Parent 7396508ad92b1214687ec77a9c8f2cb9c204ed2e tests: double escape \ in test-import-eol.t and test-mq-eol.t The shell eats the \\. Differential Revision: https://phab.mercurial-scm.org/D5974 diff -r 7396508ad92b -r 140b542b0e59 tests/test-import-eol.t --- a/tests/test-import-eol.t Fri Feb 15 13:05:01 2019 -0800 +++ b/tests/test-import-eol.t Fri Feb 15 13:07:07 2019 -0800 @@ -17,9 +17,9 @@ > 'empty:stripped-crlf': b'\r\n'}[sys.argv[1]]) > w(b' d\n') > w(b'-e\n') - > w(b'\\ No newline at end of file\n') + > w(b'\\\\ No newline at end of file\n') > w(b'+z\r\n') - > w(b'\\ No newline at end of file\r\n') + > w(b'\\\\ No newline at end of file\r\n') > EOF $ hg init repo diff -r 7396508ad92b -r 140b542b0e59 tests/test-mq-eol.t --- a/tests/test-mq-eol.t Fri Feb 15 13:05:01 2019 -0800 +++ b/tests/test-mq-eol.t Fri Feb 15 13:07:07 2019 -0800 @@ -23,9 +23,9 @@ > w(b' c\r\n') > w(b' d\n') > w(b'-e\n') - > w(b'\\ No newline at end of file\n') + > w(b'\\\\ No newline at end of file\n') > w(b'+z\r\n') - > w(b'\\ No newline at end of file\r\n') + > w(b'\\\\ No newline at end of file\r\n') > EOF $ cat > cateol.py <