From: Alexander Belopolsky Date: Fri, 22 Jun 2012 14:38:48 +0000 (-0400) Subject: Fixed the name of the 'email.Utils' module in tests. X-Git-Tag: v2.7.4rc1~749 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=83ae8beb088a905ee7fda82c378a6cc8f7103599;p=python Fixed the name of the 'email.Utils' module in tests. --- diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py index d86bfd1743..3bb3446a9a 100644 --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -2263,9 +2263,9 @@ class TestMiscellaneous(TestEmailBase): eq(int(time.strftime('%Y', timetup[:9])), 2003) def test_mktime_tz(self): - self.assertEqual(utils.mktime_tz((1970, 1, 1, 0, 0, 0, + self.assertEqual(Utils.mktime_tz((1970, 1, 1, 0, 0, 0, -1, -1, -1, 0)), 0) - self.assertEqual(utils.mktime_tz((1970, 1, 1, 0, 0, 0, + self.assertEqual(Utils.mktime_tz((1970, 1, 1, 0, 0, 0, -1, -1, -1, 1234)), -1234) def test_parsedate_y2k(self):