[Python-checkins] r43612 - python/branches/release24-maint/Lib/email/test/test_email.py

tim.peters python-checkins at python.org
Tue Apr 4 01:44:28 CEST 2006


Author: tim.peters
Date: Tue Apr  4 01:44:28 2006
New Revision: 43612

Modified:
   python/branches/release24-maint/Lib/email/test/test_email.py
Log:
Rev 43597 on the branch purported to merge rev 43578 from the trunk,
but neglected to incorporate 43578's changes to
Lib/email/test/test_email.py.  As a result, all the buildbots have
failed test_email on the branch since then.  This should repair it.


Modified: python/branches/release24-maint/Lib/email/test/test_email.py
==============================================================================
--- python/branches/release24-maint/Lib/email/test/test_email.py	(original)
+++ python/branches/release24-maint/Lib/email/test/test_email.py	Tue Apr  4 01:44:28 2006
@@ -2110,12 +2110,12 @@
     def test_parsedate_no_dayofweek(self):
         eq = self.assertEqual
         eq(Utils.parsedate_tz('25 Feb 2003 13:47:26 -0800'),
-           (2003, 2, 25, 13, 47, 26, 0, 1, 0, -28800))
+           (2003, 2, 25, 13, 47, 26, 0, 1, -1, -28800))
 
     def test_parsedate_compact_no_dayofweek(self):
         eq = self.assertEqual
         eq(Utils.parsedate_tz('5 Feb 2003 13:47:26 -0800'),
-           (2003, 2, 5, 13, 47, 26, 0, 1, 0, -28800))
+           (2003, 2, 5, 13, 47, 26, 0, 1, -1, -28800))
 
     def test_parsedate_acceptable_to_time_functions(self):
         eq = self.assertEqual


More information about the Python-checkins mailing list