From 93973ffbd58f4884ed8730194b1905e98c61403c Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Mon, 3 Apr 2006 23:44:28 +0000 Subject: [PATCH] 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. --- Lib/email/test/test_email.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py index 1360bbe309ba..18f4894a31d0 100644 --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -2110,12 +2110,12 @@ class TestMiscellaneous(TestEmailBase): 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 -- 2.47.3