Commit 23196a56 authored by Ezio Melotti's avatar Ezio Melotti

#8474: fix duplicate test in test_email.

parent 0a361819
...@@ -552,11 +552,6 @@ class TestEncoders(unittest.TestCase): ...@@ -552,11 +552,6 @@ class TestEncoders(unittest.TestCase):
msg.set_charset('us-ascii') msg.set_charset('us-ascii')
eq(msg['content-transfer-encoding'], '7bit') eq(msg['content-transfer-encoding'], '7bit')
def test_default_cte(self):
eq = self.assertEqual
msg = MIMEText('hello world')
eq(msg['content-transfer-encoding'], '7bit')
def test_default_cte(self): def test_default_cte(self):
eq = self.assertEqual eq = self.assertEqual
# With no explicit _charset its us-ascii, and all are 7-bit # With no explicit _charset its us-ascii, and all are 7-bit
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment