tests/unwrap-message-id.py
author Arseniy Alekseyev <aalekseyev@janestreet.com>
Thu, 11 Apr 2024 15:53:23 +0100
branchstable
changeset 51563 b861d913e7ec
parent 48875 6000f5b25c9b
permissions -rw-r--r--
tests: add a test that demonstrates a bug in rhg status pattern handling The bug is in [visit_children_set], will be elaborated on in follow-up changes.

import sys

for line in sys.stdin:
    if line.lower() in ("message-id: \n", "in-reply-to: \n"):
        line = line[:-2]
    print(line, end="")