projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1b43274
)
#15222: Fix a test failure on Windows
author
Petri Lehtinen
<petri@digip.org>
Wed, 26 Sep 2012 04:41:11 +0000
(07:41 +0300)
committer
Petri Lehtinen
<petri@digip.org>
Wed, 26 Sep 2012 04:42:18 +0000
(07:42 +0300)
Lib/test/test_mailbox.py
patch
|
blob
|
history
diff --git
a/Lib/test/test_mailbox.py
b/Lib/test/test_mailbox.py
index 84c6cdd1cc03d9630422e0e0b452e413cd7cb074..0696fef586cb0ef44cc49f5e10a182618e9b4cad 100644
(file)
--- a/
Lib/test/test_mailbox.py
+++ b/
Lib/test/test_mailbox.py
@@
-145,7
+145,7
@@
class TestMailbox(TestBase):
key1 = self._box.add(self._template % 1)
msg = self._box.get(key1)
self.assertEqual(msg['from'], 'foo')
- self.assertEqual(msg.fp.read(), '1
\n'
)
+ self.assertEqual(msg.fp.read(), '1
' + os.linesep
)
def test_getitem(self):
# Retrieve message using __getitem__()