mirror of https://github.com/python/cpython
Use the new name for the parser module.
This commit is contained in:
parent
315d845739
commit
2c440a1086
|
@ -99,11 +99,11 @@ class MaildirTestCase(unittest.TestCase):
|
||||||
|
|
||||||
def test_unix_mbox(self):
|
def test_unix_mbox(self):
|
||||||
### should be better!
|
### should be better!
|
||||||
import email.Parser
|
import email.parser
|
||||||
fname = self.createMessage("cur", True)
|
fname = self.createMessage("cur", True)
|
||||||
n = 0
|
n = 0
|
||||||
for msg in mailbox.PortableUnixMailbox(open(fname),
|
for msg in mailbox.PortableUnixMailbox(open(fname),
|
||||||
email.Parser.Parser().parse):
|
email.parser.Parser().parse):
|
||||||
n += 1
|
n += 1
|
||||||
self.assertEqual(msg["subject"], "Simple Test")
|
self.assertEqual(msg["subject"], "Simple Test")
|
||||||
self.assertEqual(len(str(msg)), len(FROM_)+len(DUMMY_MESSAGE))
|
self.assertEqual(len(str(msg)), len(FROM_)+len(DUMMY_MESSAGE))
|
||||||
|
|
Loading…
Reference in New Issue