diff options
Diffstat (limited to 'Lib/test/test_email.py')
-rw-r--r-- | Lib/test/test_email.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py index efca478..14051c2 100644 --- a/Lib/test/test_email.py +++ b/Lib/test/test_email.py @@ -1143,6 +1143,10 @@ class TestIdempotent(TestEmailBase): msg, text = self._msgobj('msg_02.txt') self._idempotent(msg, text) + def test_long_header(self): + msg, text = self._msgobj('msg_27.txt') + self._idempotent(msg, text) + ## def test_MIME_digest_with_part_headers(self): ## msg, text = self._msgobj('msg_28.txt') ## self._idempotent(msg, text) |