##// END OF EJS Templates
test-notify: fix fix for line continuation in long mail header lines...
Mads Kiilerich -
r12646:624859bf default
parent child Browse files
Show More
@@ -109,7 +109,7 b' of the very long subject line'
109 pull (minimal config)
109 pull (minimal config)
110
110
111 $ hg --traceback --cwd b pull ../a | \
111 $ hg --traceback --cwd b pull ../a | \
112 > python -c 'import sys,re; print re.sub("\n\t", " ", sys.stdin.read()),'
112 > python -c 'import sys,re; print re.sub("\n[\t ]", " ", sys.stdin.read()),'
113 pulling from ../a
113 pulling from ../a
114 searching for changes
114 searching for changes
115 adding changesets
115 adding changesets
@@ -135,8 +135,7 b' pull (minimal config)'
135 diff -r cb9a9f314b8b -r 0647d048b600 a
135 diff -r cb9a9f314b8b -r 0647d048b600 a
136 --- a/a Thu Jan 01 00:00:00 1970 +0000
136 --- a/a Thu Jan 01 00:00:00 1970 +0000
137 +++ b/a Thu Jan 01 00:00:01 1970 +0000
137 +++ b/a Thu Jan 01 00:00:01 1970 +0000
138 @@ -1,1 +1,2 @@
138 @@ -1,1 +1,2 @@ a
139 a
140 +a
139 +a
141 (run 'hg update' to get a working copy)
140 (run 'hg update' to get a working copy)
142 $ cat <<EOF >> $HGRCPATH
141 $ cat <<EOF >> $HGRCPATH
General Comments 0
You need to be logged in to leave comments. Login now