[Python-checkins] r60242 - python/branches/release25-maint/Lib/test/test_mailbox.py

andrew.kuchling python-checkins at python.org
Thu Jan 24 15:08:00 CET 2008


Author: andrew.kuchling
Date: Thu Jan 24 15:08:00 2008
New Revision: 60242

Modified:
   python/branches/release25-maint/Lib/test/test_mailbox.py
Log:
Fix failing test_mailbox on Cygwin

Modified: python/branches/release25-maint/Lib/test/test_mailbox.py
==============================================================================
--- python/branches/release25-maint/Lib/test/test_mailbox.py	(original)
+++ python/branches/release25-maint/Lib/test/test_mailbox.py	Thu Jan 24 15:08:00 2008
@@ -519,6 +519,7 @@
         class FakeMessage(mailbox.MaildirMessage):
             pass
         box = mailbox.Maildir(self._path, factory=FakeMessage)
+        box.colon = self._box.colon
         msg2 = box.get_message(key)
         self.assert_(isinstance(msg2, FakeMessage))
 


More information about the Python-checkins mailing list