Commit c82f1dcf authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

Skipped the test introduced at r17403 on Python 2.5, because it requires warnings.catch_warnings.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@17413 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent a678e9ea
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -262,6 +262,7 @@ class NewDatabaseTests(BaseDateTimeTests):
        self.assertEqual(event.dt, dt.replace(tzinfo=EAT))

    @requires_tz_support
    @skipIf(sys.version_info < (2, 6), "this test requires Python >= 2.6")
    def test_datetime_from_date(self):
        dt = datetime.date(2011, 9, 1)
        with warnings.catch_warnings(record=True) as recorded: