From: Ezio Melotti Date: Thu, 22 Apr 2010 11:23:31 +0000 (+0000) Subject: #8474: fix duplicate test in test_email. X-Git-Tag: v2.7b2~223 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=23196a564b07d9aa24469f50bc09fd39d0f27d13;p=thirdparty%2FPython%2Fcpython.git #8474: fix duplicate test in test_email. --- diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py index 22eddd594005..d3279a0274c8 100644 --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -552,11 +552,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