Commit f9db011c authored by Zackery Spytz's avatar Zackery Spytz Committed by Benjamin Peterson

closes bpo-36712: Fix duplicate method in Lib/email/test/test_email_renamed.py. (GH-14800)

parent b239ab91
......@@ -513,11 +513,6 @@ class TestEncoders(unittest.TestCase):
msg.set_charset('us-ascii')
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):
eq = self.assertEqual
# 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