summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2008-01-24 14:08:00 +0000
committerAndrew M. Kuchling <amk@amk.ca>2008-01-24 14:08:00 +0000
commit61c2c9536fdcb29c6224850f8a92e99478d54ff3 (patch)
treee4249aec30bc4d0088a6fd0a6001eee8e14e67d2
parentfe528ebf6829b9be7cce38c7b15a3815a361faa2 (diff)
downloadcpython-git-61c2c9536fdcb29c6224850f8a92e99478d54ff3.tar.gz
Fix failing test_mailbox on Cygwin
-rw-r--r--Lib/test/test_mailbox.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_mailbox.py b/Lib/test/test_mailbox.py
index ffeeb3eed0..7dc5216f8b 100644
--- a/Lib/test/test_mailbox.py
+++ b/Lib/test/test_mailbox.py
@@ -519,6 +519,7 @@ class TestMaildir(TestMailbox):
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))