# HG changeset patch # User Gregory Szorc # Date 2019-02-15 21:07:07 # 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 --git a/tests/test-import-eol.t b/tests/test-import-eol.t --- a/tests/test-import-eol.t +++ b/tests/test-import-eol.t @@ -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 --git a/tests/test-mq-eol.t b/tests/test-mq-eol.t --- a/tests/test-mq-eol.t +++ b/tests/test-mq-eol.t @@ -23,9 +23,9 @@ Test interactions between mq and patch.e > 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 <