test-run-tests.t: fix wrong test case for cr handling on Windows
An incorrect and failing test case was introduced in
af7c6bc48d8d.
--- a/tests/test-run-tests.t Wed Oct 17 18:09:00 2012 +0900
+++ b/tests/test-run-tests.t Thu Oct 18 00:33:26 2012 +0200
@@ -55,11 +55,11 @@
Windows: \r\n is handled like \n and can be escaped:
#if windows
- $ printf 'crlf\r\ncr\r\tcrlf\r\ncrcrlf\r\r\n'
+ $ printf 'crlf\r\ncr\r\tcrlf\r\ncrlf\r\n'
crlf
cr\r (no-eol) (esc)
\tcrlf (esc)
- crcrlf\r (esc)
+ crlf\r (esc)
#endif
Combining esc with other markups - and handling lines ending with \r instead of \n: