Hardened the test introduced in ded11aa6. Refs #18766.

Inputs acceptable to time.mktime are platform-dependent.
This commit is contained in:
Aymeric Augustin 2013-09-08 19:38:12 +02:00
parent 96fd5557f9
commit 1a1e14786a
1 changed files with 5 additions and 1 deletions

View File

@ -24,8 +24,12 @@ class TimezoneTests(unittest.TestCase):
def test_localtime_out_of_range(self):
local_tz = timezone.LocalTimezone()
long_ago = datetime.datetime(1900, 1, 1, tzinfo=timezone.utc)
with six.assertRaisesRegex(self, OverflowError, "install pytz"):
try:
timezone.localtime(long_ago, local_tz)
except OverflowError as exc:
self.assertIn("install pytz", exc.args[0])
else:
raise unittest.SkipTest("Failed to trigger an OverflowError")
def test_now(self):
with override_settings(USE_TZ=True):