diff options
author | Zackery Spytz <zspytz@gmail.com> | 2019-09-11 13:26:07 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2019-09-11 13:26:07 (GMT) |
commit | f9db011c323556ec68761263c6b91b2f75ca95ba (patch) | |
tree | e00f2c6e5c77678e6ed191d980b3a55c4dbecb1d | |
parent | b239ab9107cd5bcbfbfa3b46290191298718ced3 (diff) | |
download | cpython-f9db011c323556ec68761263c6b91b2f75ca95ba.zip cpython-f9db011c323556ec68761263c6b91b2f75ca95ba.tar.gz cpython-f9db011c323556ec68761263c6b91b2f75ca95ba.tar.bz2 |
closes bpo-36712: Fix duplicate method in Lib/email/test/test_email_renamed.py. (GH-14800)
-rw-r--r-- | Lib/email/test/test_email_renamed.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/email/test/test_email_renamed.py b/Lib/email/test/test_email_renamed.py index 5a41701..206baaf 100644 --- a/Lib/email/test/test_email_renamed.py +++ b/Lib/email/test/test_email_renamed.py @@ -515,11 +515,6 @@ class TestEncoders(unittest.TestCase): 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 msg = MIMEText('hello world') eq(msg['content-transfer-encoding'], '7bit') |