diff options
| author | Anthony Baxter <anthonybaxter@gmail.com> | 2005-06-08 04:55:50 +0000 | 
|---|---|---|
| committer | Anthony Baxter <anthonybaxter@gmail.com> | 2005-06-08 04:55:50 +0000 | 
| commit | 422b10fc259f2f36afbaa2a00b51011d88fbfee3 (patch) | |
| tree | 431508839e94bc338d63a2de6351963a5e3a06e4 /Lib/email/test | |
| parent | 95a2a4ea701e0bc7b2afb778b1f0c1e4b4d89624 (diff) | |
| download | cpython-git-422b10fc259f2f36afbaa2a00b51011d88fbfee3.tar.gz | |
fix broken (unexecuted) test
Diffstat (limited to 'Lib/email/test')
| -rw-r--r-- | Lib/email/test/test_email.py | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py index b3a46e6753..2f184fd561 100644 --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -892,9 +892,9 @@ class TestMIMEAudio(unittest.TestCase):          payload = self._au.get_payload()          self.assertEqual(base64.decodestring(payload), self._audiodata) -    def checkSetMinor(self): +    def test_checkSetMinor(self):          au = MIMEAudio(self._audiodata, 'fish') -        self.assertEqual(im.get_type(), 'audio/fish') +        self.assertEqual(au.get_type(), 'audio/fish')      def test_add_header(self):          eq = self.assertEqual @@ -935,7 +935,7 @@ class TestMIMEImage(unittest.TestCase):          payload = self._im.get_payload()          self.assertEqual(base64.decodestring(payload), self._imgdata) -    def checkSetMinor(self): +    def test_checkSetMinor(self):          im = MIMEImage(self._imgdata, 'fish')          self.assertEqual(im.get_type(), 'image/fish')  | 
