From 1ecb574b8cdad7262b1337a1c9e9de68ef98bc64 Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Tue, 16 Jul 2019 12:02:41 -0600 Subject: [PATCH] bpo-36712: Fix duplicate method in Lib/email/test/test_email_renamed.py --- Lib/email/test/test_email_renamed.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Lib/email/test/test_email_renamed.py b/Lib/email/test/test_email_renamed.py index 5a41701271c529..206baaf59a6d35 100644 --- a/Lib/email/test/test_email_renamed.py +++ b/Lib/email/test/test_email_renamed.py @@ -513,11 +513,6 @@ def test_encode_empty_payload(self): 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