diff options
author | Barry Warsaw <barry@python.org> | 2003-03-10 17:00:43 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2003-03-10 17:00:43 (GMT) |
commit | 513af770d7483e6b90700bbd191ebab70a83b6df (patch) | |
tree | 0f54d495c7b1acf95138cb40e7f862919b98a3f1 /Lib/email | |
parent | e1ff4bbce60488b2a518ee11e0b47347487381bb (diff) | |
download | cpython-513af770d7483e6b90700bbd191ebab70a83b6df.zip cpython-513af770d7483e6b90700bbd191ebab70a83b6df.tar.gz cpython-513af770d7483e6b90700bbd191ebab70a83b6df.tar.bz2 |
Fix base class
Diffstat (limited to 'Lib/email')
-rw-r--r-- | Lib/email/test/test_email.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py index c307888..3c382cb 100644 --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -1006,7 +1006,7 @@ class TestMIMEText(unittest.TestCase): # Test a more complicated multipart/mixed type message -class TestMultipartMixed(unittest.TestCase): +class TestMultipartMixed(TestEmailBase): def setUp(self): fp = openfile('PyBanner048.gif') try: |