Mercurial > hg
diff tests/test-mq-eol.t @ 41550:7295279b9ea5
tests: escape backslash in makepatch.py inline file
This avoids some SyntaxWarning on Python 3.8 due to unescaped \.
Differential Revision: https://phab.mercurial-scm.org/D5840
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Mon, 04 Feb 2019 14:10:10 -0800 |
parents | 84707d9e77a0 |
children | 140b542b0e59 |
line wrap: on
line diff
--- a/tests/test-mq-eol.t Mon Feb 04 14:05:26 2019 -0800 +++ b/tests/test-mq-eol.t Mon Feb 04 14:10:10 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 <<EOF