]> granicus.if.org Git - python/commitdiff
#18505: fix duplicate name and remove duplicate test. Patch by Vajrasky Kok.
authorEzio Melotti <ezio.melotti@gmail.com>
Sat, 10 Aug 2013 15:57:12 +0000 (18:57 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Sat, 10 Aug 2013 15:57:12 +0000 (18:57 +0300)
Lib/test/test_email/test_email.py

index 4c8295200b8b96b5a5c69890b4f444a5f6456a60..56be794a0a88b83c2e45a7a9530eed1a60ee96dd 100644 (file)
@@ -926,7 +926,7 @@ Subject: the first part of this is short,
 This is a long line that has two whitespaces  in a row.  This used to cause
  truncation of the header when folded""")
 
-    def test_splitter_split_on_punctuation_only_if_fws(self):
+    def test_splitter_split_on_punctuation_only_if_fws_with_header(self):
         eq = self.ndiffAssertEqual
         h = Header('thisverylongheaderhas;semicolons;and,commas,but'
             'they;arenotlegal;fold,points')
@@ -4214,9 +4214,6 @@ class TestQuopri(unittest.TestCase):
         self._test_encode('x' * 200 + '\n',
                 2 * ('x' * 75 + '=\n') + 'x' * 50 + '\n')
 
-    def test_encode_one_long_line(self):
-        self._test_encode('x' * 100 + '\n', 'x' * 75 + '=\n' + 'x' * 25 + '\n')
-
     def test_encode_shortest_maxlinelen(self):
         self._test_encode('=' * 5, '=3D=\n' * 4 + '=3D', maxlinelen=4)