##// END OF EJS Templates
tests: fix test-sparse-revlog...
tests: fix test-sparse-revlog This one is not covered by the CIbecause I requires an expensive artifact to be cached. So it goes out of think on regular basis (we should fix that…) The test ouput was affected by e706bb41fdb3 as we filtering now happens sooner, removing for the output.

File last commit:

r49730:6000f5b2 default
r50521:da636e7a default
Show More
unwrap-message-id.py
6 lines | 146 B | text/x-python | PythonLexer
/ tests / unwrap-message-id.py
Denis Laxalde
tests: handle Message-Id email header possible wrapping...
r43642 import sys
Joerg Sonnenberger
tests: handle In-Reply-To headers for line wrapping...
r44885 for line in sys.stdin:
if line.lower() in ("message-id: \n", "in-reply-to: \n"):
line = line[:-2]
print(line, end="")